h1, h2, h3, h4, h5, body {
  margin: 0 auto; 
  padding: 0;
  @font-face {
      font-family:Roboto Condensed;
      src: url(/fonts/RobotoCondensed-Bold.woff2);

  }
  font-family: Roboto Condensed;
  font-weight: 900;
}

p {
  font-weight: 400;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  border-radius: 10px;
  z-index: 10;
  font-size: 1.2rem;
  font-family: "Roboto Condensed", sans-serif;
  background-color: #fff3;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: none;
}

header div {
  display:flex;
  align-items: center;
  justify-content: space-between;
  padding:0rem 2rem;
}

header nav {
  background-color: #000;
  border-radius: 10px;
  padding: 1rem;
}

header #logo img {
  width:20vw;
  padding: 1rem;
}

header nav a {
  color:#fff;
  text-decoration:none;
  padding:2rem;
}

header nav a:hover, 
header nav a:last-child {
  color:#DD3792;
}

/* ---------- Botón hamburguesa ---------- */
#menu-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #000;
  display: none; /* oculto en escritorio */
  z-index: 20;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  #menu-btn {
    display: block; /* mostrar hamburguesa en móvil */
  }

  header nav {
    position: fixed;
    top: 0;
    left: -100%; /* oculto fuera de la vista */
    width: 70%;
    height: 100%;
    border-radius: 0;
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 5rem;
    background-color: #000;
  }

  header nav.active {
    left: 0; /* aparece desde la izquierda */
    background-color: #000;
  }

  header #logo img {
    width:40vw;
  }
}

footer {
  width: 100%;
  bottom: 0;
  border-radius: 10px;
  z-index: 10;
  font-size: 1.2rem;
  font-family: Roboto Condensed;
  background-color: #000;
}

footer nav {
  background-color: #000;
  border-radius: 10px;
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}

footer nav a {
  color:#fff;
  text-decoration:none;
  padding:2rem;
}

.principal{
  color: #E1C4F1;
}
.rosa {
  color: #DD3792;
}
.morado {
  color: #5028A5;
}

.lila {
  color: #EC64FA;
}

.amarillo {
  color: #F4F29F;
}