
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  color: #333;
}

a {
  text-decoration: none;
}
.navbar {
  background-color: #353535;
  padding: 15px;
  display: flex;
  justify-content: center;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar li {
  margin: 0 20px;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar a:hover {
  color: #F6AD55;
  text-decoration: underline;
}
