body {
    background-color: #000000;
    font-family: "Smooch Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

h1 {
    color: #d1a923;
    text-align: center;
    margin-top: 2rem;
    animation: slide-down 1s ease-out both;
    animation-delay: 1s;
}

#main-image {
    max-width: 100%;
    height: auto;
    margin: 4rem auto;
    display: block;
    animation: slide-down 2s ease-out both;
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-2rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    #main-image,
    h1 {
        animation: none;
    }
}