body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

/* Prevent hover color change on active links */
.active-link:hover {
  background-color: black !important;
  color: white !important;
  cursor: default;
}


header {
  background-color: #ff5a5f;
  padding: 1rem 2rem;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
/* nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */


/*nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav li {
  margin-left: 20px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #e54e52;
}*/

main {
  text-align: center;
  padding: 5rem 2rem;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  max-width: 600px;
  border-radius: 8px;
}

h2 {
  color: #333;
  font-size: 2rem;
}