body {
    background-color: #1f1f1f;
    transition: background-color 1s ease-in-out;
}

img {
    text-align: center;
    position: absolute;
    inset: 0;
    margin: auto;
}

#daniel-white {
    opacity: 0;
    scale: 15%;
    user-select: none;
}

.anim {
    animation-name: fadein;
    animation-duration: 120s;
    animation-fill-mode: forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
        scale: 15%;
    }
    to {
        opacity: 1;
        scale: 50%;
    }
}