body {
    background-color: #DDDDDD;
    margin: 0;
    /* margin-top: 4rem; */
    font-family: Helvetica, sans-serif;
    overflow: visible;
    height: max-content;
}

.footer-container {
    position: absolute;
    z-index: 3;
}

.footer-blurb-container {
    position: relative;
}

.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.faq-content-container {
    display: flex;
    margin-top: 4rem;
    width: 100%;
}

.faq-setup {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #DDDDDD;
    width: 100%;
    padding-bottom: 3rem;
}

.faq-header{
    padding-top: 2rem;
    border-bottom: 2px solid black;
    margin-bottom: 2rem;
}

.faq-header h1 {
    font-weight: normal;
}

.instructions {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.instructions li {
    color: #DDDDDD;
    list-style-type: none;
    padding: 2rem;
    font-size: large;
}

.setup-steps {
    display: flex;
    background-color: #2D3436;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.699);
}


.instructions-header {
    font-size: x-large;
    font-weight: normal;
    border-bottom: 2px solid black;
    padding-bottom: 1rem;
}

.install-error {
    display: none;
}

@media only screen and (max-width: 1279px) {
    .setup-steps li {
        display: none;
    }

    .install-error {
        display: flex;
        padding: 1rem;
        color: red;
        font-size: large;
        text-align: center;
    }

    .footer-container {
        display: none;
    }
    
}

@media only screen and (max-width: 426px) {
    .faq-header {
        padding-top: 1rem;
        margin-bottom: 0;
    }
    
    .faq-header h1 {
        font-size: 30px;
    }

    .setup-steps {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
}

@media only screen and (max-width: 376px) {
    .faq-header {
        margin-bottom: 0;
        padding-top: 1rem;
    }
    
    .faq-header h1 {
        font-size: 25px;
    }
    
}

/* scrollbar styling */

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #DDDDDD;
}

::-webkit-scrollbar-thumb {
    background: #5d6e72;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #56676d;
}