body {
    background-image: url("/images/common/background-texture.jpg");
}

.filter-redwhite {
    filter: invert(86%) sepia(13%) saturate(190%) hue-rotate(314deg) brightness(102%) contrast(113%);
}

.main-container {
    background-color: white;
    max-width: 730px;
    margin: auto;
    border-style: solid;
    border-width: 18px;
    border-color: rgb(219, 213, 205);
}

.page-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-top: 30px;
}

.sub-container {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.back-button {
    border: none;
    background-color: white;
    cursor: pointer;
}

.back-button:hover svg {
    color: rgb(163, 163, 163);
}

.back-button svg {
    width: 32px;
    color: gray;
}

.info-container {
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: smaller;
    color: rgb(71, 71, 71);
    padding: 10px;
}

.copyright {
    text-align: center;
    color: rgb(177, 177, 177);
    font-size: small;
}


.menu-container {
    display: none;
    flex-direction: column;
    right: 0;
    top: 0;
    position: fixed;
    background-color: rgb(82, 36, 36);
    z-index: 50;
    padding: 10px;
    height: 100vh;
}

.display-flex {
    display: flex;
}

.hamburger-button {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border: none;
    z-index: 50;
    right: 10px;
    top: 10px;
    background-color: rgb(82, 36, 36);
}

.menu-close-button {
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 128px;
}

.menu-button {
    background-image: url("/images/common/button-texture.jpg");
    display: flex;
    width: 180px;
    height: 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    color: white;
    font-size: 16px;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 3px;
}

.side-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-size: 14px;
    max-width: 730px;
    margin: auto;
    padding-top: 20px;
}

.side-subcontainer {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.side-container a {
    color: white;
}

.side-image-text {
    margin-top: 0px;
    width: 180px;
}

.page-title {
    display: none;
}

@media screen and (min-width: 1150px) {
    .menu-container {
        display: block;
        z-index: 25;
        right: auto;
        position: absolute;
        margin-left: calc(((100vw - 1000px) / 2));
        top: 230px;
        background-color: transparent;
    }

    .menu-close-button {
        display: none;
    }

    .menu-button {
        width: 139px;
        height: 29px;
        font-size: 13px;
        margin-bottom: 8px;
        margin: 0;
        margin-bottom: 8px;
    }

    .side-container {
        position: absolute;
        font-size: 13px;
        right: 0;
        margin-right: calc(((100vw - 1120px) / 2));
        flex-direction: column;
        top: 200px;
        max-width: none;
        margin: 0;
        margin-right: calc(((100vw - 1120px) / 2));
        padding-top: 0;
        justify-content: normal;
    }

    .side-container a {
        text-align: center;
        margin-bottom: 20px;
    }

    .side-container li {
        margin-bottom: 12px;
    }

    .side-container-mobile {
        display: none;
    }

    .hamburger-button {
        display: none;
    }

    .side-image-text {
        margin-top: -15px;
        width: 145px;
    }

    .page-title {
        display: block;
        color: rgb(207, 203, 203);
        font-family: Georgia, 'Times New Roman', Times, serif;
        font-weight: 100;
        font-size: 30px;
        text-align: center;
        margin: 10px;
    }
}

.content-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 500px;
    padding-bottom: 200px;
    padding-left: 30px;
    padding-right: 30px;
}

@media screen and (min-width: 800px) {
    .sub-container {
        margin-left: 60px;
        margin-right: 60px;
    }
    .content-container {
        padding-left: 70px;
        padding-right: 70px;
    }
}

.side-img {
    border-radius: 4px;
    width: 120px;
    margin-top: 5px;
}