body {
  background-color: black;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  height: 100vh;
  margin: 0;
  padding-top: 0;
}
.bandera {
  width: 504px;
  height: 88vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#astropuff {
  background-image: url("assets/astropuff.png");
}
#slytherino {
  background-image: url("assets/slytherino.png");
}
#griffindoro {
  background-image: url("assets/griffindoro.png");
}
#ravencode {
  background-image: url("assets/ravencode.png");
}
@font-face {
  font-family: "Hogwarts";
  src: url("assets/hogwarts.ttf")
    format("truetype");
}
.numero {
  font-family: "Hogwarts", sans-serif;
  font-size: calc(16px + 4vw);
  color: white;
  position: relative; /* Posicionamiento absoluto dentro de la bandera */
  top: 15%;
  text-align: center;
}
.bandera-destacada {
  box-shadow: 0 0 15px 5px gold; /* Sombra dorada */
}
@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 2px transparent, 0 0 4px transparent, 0 0 6px transparent;
  }
  to {
    text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700, 0 0 15px #ffd700;
  }
}
.glow {
  -webkit-animation: glow 2s ease-in-out infinite alternate;
  -moz-animation: glow 2s ease-in-out infinite alternate;
  animation: glow 2s ease-in-out infinite alternate;
  font-size: calc(16px + 5vw);
}

