body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  direction: rtl;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 30px; 
  background-color: whitesmoke;
  padding: 20px;
}

.nav-link {
  text-decoration: none;
  color: white;
  background-color: tomato;
  padding: 15px 25px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s, transform 0.2s;
}

.nav-link:hover {
  background-color: lightblue; 
  transform: scale(1.05);
}
