*{
    background-color: #0B0A21;
}

body{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.blink-1 {
	animation: blink-1 15s 0.1s infinite reverse forwards;
    width: 25vw;
}


@keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}


@media (max-width: 600px) {
    .blink-1 {
        width: 50vw; /* ancho del logo en móviles */
    }
}