body {
    margin: 0;
    height: 100vh;
    background-color: #15141a;
    display: flex;
    justify-content: center;
    align-items: center;
}

#animgdiv {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

img {
    min-width: 256px;
    max-width: 15vw;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(248, 234, 185, 0.2));
    animation: pulsate 5s infinite ease-in-out;
    animation-delay: 3s;
}

@keyframes pulsate {
    0% {
        filter: drop-shadow(0 0 25px rgba(248, 234, 185, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(248, 234, 185, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(248, 234, 185, 0.2));
    }
}

.centered-span {
    text-align: center;
    color: #d7b56d;
    font-family: "Kode Mono", monospace;
    font-optical-sizing: auto;
    font-size: larger;
    position: absolute;
    text-shadow: 2px 2px 4px rgba(255, 1, 9, 0.9);
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}