html {
    background-color: #BDD7EE;
    font-family: "Berkshire Swash", poppins;
    position: relative;
}


.header-logo {
    width: 400px;
}

.download-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.download-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.text-basic-styles {
    color: black;
    -webkit-text-stroke: 5px white;
    text-shadow: 2px 2px 0 #FFF, 2px -2px 0 #FFF, -2px 2px 0 #FFF, -2px -2px 0 #FFF, 2px 0px 0 #FFF, 0px 2px 0 #FFF, -2px 0px 0 #FFF, 0px -2px 0 #FFF;
    paint-order: stroke fill;
    
}

.header-description {
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-align: center;
}


@keyframes button-pulse {
    0% {
        filter: brightness(1);
    }

    100% {
        filter: brightness(1.25);
    }
}

@media screen and (max-width: 480px) {
    .header-logo {
        width: 280px;
    }
}

/* 
=======================================
======== DOWNLOAD BODY SECTION ========
=======================================
*/

.download-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.download-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    text-decoration: none;
    padding: 1rem 0rem;
    border-radius: 3rem;
    background-color: #ff99007b;
    border: 1rem solid #ff9900d6;
    transition: color .25s, background-color .25s;

    animation-name: button-pulse;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.download-link:hover {
    background-color: #ff9900d6;
    color: #2e7d32;
    animation-name: unset;
}

.download-link .download-description-image {
    flex-basis: 25%;
    display: flex;
    justify-content: center;
}

.download-description-image img {
    aspect-ratio: 1;
    width: 180px;
    object-fit: contain;
    border-radius: 2rem;
}

.download-link .download-description {
    flex-basis: 75%;
}


.download-item-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
}

.download-item-description {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
}

@media screen and (max-width: 480px) {
    .download-link {
        flex-direction: column;
        text-align: center;
    }
    
}

/* 
====================================
======== BACKGROUND SECTION ========
====================================
*/

.background-place {
    width: 100%;
    height: 500px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
    object-position: top;
}