body{
    background-color: #A4193D;
}


h1 ,h2 , h3{
        color: #FFDFB9;
justify-self: center;
 font-family: "Raleway", sans-serif;
}

.MainNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  margin: 0;
  background-color: #FFDFB9;
  border-radius: 25px;
  color: #A4193D;
}

.MainNav .brand {
  font-size: 1.4em;
  font-weight: 700;
}

.MainNav .links {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
}

.MainNav li {
  cursor: pointer;
  transition: 0.3s;
}

.MainNav li:hover {
  color: #A4193D;
  text-decoration: underline;
}

.nav-left {
  display: flex;
  align-items: center;
}
.navlogo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  background-color: #FFDFB9;
  color: #A4193D;
  border-radius: 25px;
}

.feature {
  max-width: 250px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 15px;
  border-radius: 15px;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature .emoji {
  font-size: 2rem;
}

/* FOOTER */
footer {
  text-align: center;
  margin: 30px 0;
  font-size: 0.9em;
  opacity: 0.8;
}
/* FADE ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-100%); }
  to { opacity: 1; transform: translateX(0); }
}