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;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.general-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.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;
    }
}

/* 
=======================================
========== HELP MENU SECTION ==========
=======================================
*/

.install-viewer-section
{
    margin-bottom: 300px;
}

.install-viewer-guide ol, .install-viewer-guide ul
{
    font-size: 1.5rem;
}


/* 
====================================
======== BACKGROUND SECTION ========
====================================
*/

.background-place {
    width: 100%;
    height: 500px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
    object-position: top;
}