body {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
/*    justify-content: center;  */
    align-items: center;
    background: rgb(0, 0, 0);
    color: rgb(211, 188, 141);
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

html.no-scrollbar {
    -ms-overflow-style: none; /* IE and old Edge */
    scrollbar-width: none;    /* Firefox */
}

html.no-scrollbar::-webkit-scrollbar {
    display: none;            /* Chrome, Safari, Opera */
}

header, footer {
    width: 90%;
    height: fit-content;
    display: inline-block;
    background: rgb(0, 0, 0);
    border: 1px solid rgb(211, 188, 141);
    text-align: center;
    box-sizing: border-box;
    padding: .5rem 0;
    z-index: 1000;

    h1 {
        font-size: 3rem;
        font-weight: 700;
    }
    h2 {
        font-size: 2.5rem;
        font-weight: 650;
    }
    h3 {
        font-size: 2rem;
        font-weight: 600;
    }
    h4 {
        font-size: 1.5rem;
        font-weight: 550;
    }
}

header {
    position: fixed;
    top: 0;
}

footer {
    position: fixed;
    bottom: 0;
    width: 90%;
    font-size: .65rem;

        a {
            color: rgb(211, 188, 141);
            text-decoration: none;
            font-weight: 550;
        }
}

main {
    width: 80%;
    max-width: 986px;
    height: fit-content;
    position: relative;
    display: inline-block;
    background: rgb(0, 0, 0);
    text-align: center;
    box-sizing: border-box;
    padding: .25rem 0;
    margin-top: 10rem;
    margin-bottom: 8rem; /* ensure content can scroll above fixed footer */
}



.signupContainer {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;

    .signupMessage {
        width: 50%;
        height: fit-content;
        display: inline-block;
        text-align: left;

        h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: .5rem;
            text-align: center;
        }
        p {
            font-size: 1rem;
            font-weight: 500;
            text-align: left;
            padding: 0 .75rem;
        }
    }

    .signupForm {
        width: 40%;
        height: fit-content;
        display: inline-block;
        box-shadow: 0 0 4px 4px rgb(211, 188, 141);
    }

    h2 {
        font-size: 2rem;
        font-weight: 600;
        box-sizing: border-box;
        padding: .25rem 0;
    }

    .label {
        display: block;
        font-size: 1rem;
        font-weight: 500;
        text-align: left;
        margin-top: .5rem;
        margin-left: 1.75rem;
    }

    .input {
        width: 90%;
        height: fit-content;
        display: block;
        background: rgb(0, 0, 0);
        box-sizing: border-box;
        padding: .5rem .5rem;
        margin-top: .25rem;
        margin: 0 auto;
    }

    input {
        width: 100%;
        height: fit-content;
        display: block;
        background: rgb(0, 0, 0);
        box-shadow: 0 0 4px 4px rgb(211, 188, 141);
        color: rgb(211, 188, 141);
        border: none;
        outline: none;
        box-sizing: border-box;
        padding: .5rem .5rem;
        margin-top: .25rem;
    }
}

input[type="submit"] {
    width: 60%;
    height: fit-content;
    display: block;
    margin: 1rem auto;
    background: rgb(0, 0, 0);
    color: rgb(211, 188, 141);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    outline: none;
    box-sizing: border-box;
    padding: .25rem .5rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: .5s ease-in-out;

        &:hover {
            background: rgb(211, 188, 141);
            color: rgb(0, 0, 0);
            box-shadow: none;
        }
}

.siteLogo {
    width: 450px;
    height: fit-content;
}

.donateContainer {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 2rem;
}

.donationMessage {
    width: 50%;
    height: fit-content;
    display: inline-block;
    text-align: left;

    h2 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: .5rem;
        text-align: center;
    }
    p {
        font-size: 1rem;
        font-weight: 500;
        text-align: left;
        padding: 0 .75rem;
    }

    a {
        padding: .25rem .75rem;
        background: rgb(211, 188, 141);
        border-radius: 5px;
        color: rgb(0, 0, 0);
        text-decoration: none;
        font-weight: 550;
    }
}

ul li {
    width: 100%;
    font-size: .85rem;
    font-weight: 500;
    text-align: left;
    padding: .125rem 0;
    text-align: left;
}


.arrowContainer {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}
.arrow {
    font-size: 3rem;
    text-align: center;
}

.feedbackSection {
    width: 100%;
    height: fit-content;
    display: inline-block;
    text-align: center;
    margin-top: 1rem;
}

.feedbackSection .feedback {
    width: 80%;
    max-width: 500px;
    margin: 0.25rem auto;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
}

.feedbackSection .feedback-good {
    width: fit-content;
    background: rgba(0, 128, 0, 0.5);
    color: rgb(255, 255, 255);
}

.feedbackSection .feedback-bad {
    width: fit-content;
    background: rgba(128, 0, 0, 0.5);
    color: rgb(255, 255, 255);
}

@media (max-width: 768px) {
    .signupContainer,
    .donateContainer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .signupContainer .signupMessage,
    .signupContainer .signupForm,
    .donationMessage,
    .donationUL {
        width: 100%;
    }

    .signupMessage {
        margin-bottom: 1rem;
    }

    .siteLogo {
        width: 80%;
        max-width: 350px;
    }

    header h1 {
        font-size: 1.75rem;
    }

    header h2 {
        font-size: 1.5rem;
    }

    header h3 {
        font-size: 1.25rem;
    }

    header h4 {
        font-size: 1rem;
    }
}