@import url('https://fonts.googleapis.com/css2?family=Comic+Relief&family=Fjalla+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

div {
  font-family: "Fjalla One", sans-serif;
}

.not-found {
  background-image: url(https://smell.zone/random-gif);
  background-repeat: repeat;
}

.ytmnd-container {
    /* Optional: Center content on the page */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden; /* Prevents overflow during extreme zoom */
}

.zoom-text {
    color: white; /* Common YTMND text color */
    font-size: 50px;
    font-weight: bold;
    animation: ytmndzoom 2s infinite; /* Apply the animation */
}

@keyframes ytmndzoom {
    0% {
        transform: scale(0.1); /* Start very small */
        opacity: 0; /* Start invisible */
    }
    50% {
        transform: scale(2); /* Zoom in significantly */
        opacity: 1; /* Become fully visible */
    }
    100% {
        transform: scale(4); /* Zoom out further */
        opacity: 0; /* Fade out */
    }
}