html {
    margin: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}
main {
    flex: 1 0 auto;
}
footer {
    align-self: flex-end;
    align-self: flex-end;
    flex-shrink: 1;
}

/* Account Registration and Login */
.form-container {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    p {
        margin-top: 8px;
    }
}
.form-container h2 {
    margin-bottom: 20px;
}

/* Flash */
#messages {
    position: absolute;
    top: 10;
    left: 2%;
    z-index: 10;

    display: flex;
    justify-content: space-between;
    align-items: center;

    button {
        /* margin-left: 2% */
        font-size: 0.8em;
    }

    ul {
        list-style: none;
        margin: 0;
        padding: 0;
        padding-right: 10px;
    }
}

/* Home Page */
div#banner {
    position: relative;
    width: 100%;
    margin-top: -16px;

    h1 {
        position: absolute;
        left: 0;
        right: 0;
        margin-inline: auto;
        width: fit-content;
    }

    img#hero-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: center 85%;
    }

    div#banner-search-container {
        position: absolute;
        left: 0;
        right: 0;
        top: 100px;
        margin-inline: auto;
        width: 40%;

        padding: 15px;
        background-color: rgb(173, 173, 173, 0.8);
        text-align: center;
        border-radius: 6px;

        form#banner-search {
            /* width: 60%; */
        }

        p {
            margin-top: 8px;
            margin-bottom: 8px;
        }
    }
}

.hidden {
    display: none !important;
}
