body {
    position: relative;
    min-width: 450px;
    min-height: 100vh;
    margin: 0;
    padding: 0;

    background-color: #507f72;
    background-image: url("public/MountainBackground.png");
    background-repeat: no-repeat;
    background-size: contain;
}

header {
    position: fixed;
    font-size: 18px;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #254d43;
    color: #b1d6cc;
    text-align: center;
    overflow: hidden;

    a {
        line-height: 60px;
        text-decoration: none;
        color: #b1d6cc;
        font-weight: bold;
        text-transform: uppercase;

        &:hover {
            background-color: #11322a;
        }
    }
}

footer {
    position: absolute;
    font-size: 12px;
    bottom: 0;
    width: 100%;
    height: 70px; /* footer size */
    background-color: #11322a;
    color: #b1d6cc;
    text-align: center;
    overflow: hidden;

    a {
        line-height: 40px; /* footer size */
        text-decoration: none;
        color: #b1d6cc;
        font-weight: normal;
        text-transform: uppercase;

        &:hover {
            color: #507f72;
        }
    }
}

.menu {
    height: 100%;
    width: 100%;

    ul {
        display: flex;
        list-style-type: none;
        height: 100%;
        margin: 0;
        padding: 0;

        li {
            display: inline-flex;
            flex-direction: row;
            align-items: stretch;
            justify-content: center;
            flex-wrap: nowrap;
            flex: 5 3 auto;
            height: 100%;


            a {
                width: 100%;
                height: 100%;

                text-align: center;
            }
        }
    }
}

.page-wrapper {
    padding: 65px 20px 70px 20px; /* header size */
    column-gap: 5px;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.content-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    flex: 5 3 auto;

    padding-bottom: 15px;
}

.content-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;

    width: 100%;
    padding-bottom: 15px;
}

.text-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;

    padding-bottom: 15px;
}

.photo-box {
    display: inline-block;
    width: 20%;
    min-width: 150px;
    max-width: 200px;
    aspect-ratio: 1/1;
    border: 1px solid #355f55;
}

.paragraph {
    color: #11322a;
    text-align: left;

    padding-bottom: 5px;
    margin: 0;
    max-width: 350px;
}

.head {
    padding-bottom: 30px;
}

.text-button {
    background-color: #507f72; /* Green */
    border: 3px solid #355f55;
    padding: 5px 15px;

    color: #355f55;
    text-align: center;
    font-size: 14px;
    font-weight: bold;

    cursor: pointer;
}

.home-button {
    background-color: #507f72; /* Green */
    border: 5px solid #355f55;
    border-radius: 8px;
    padding: 15px 32px;
    min-width: 300px;
    min-height: 40px;
    margin-bottom: 15px;

    color: #11322a;
    text-align: center;
    font-size: 16px;
    font-weight: bold;

    cursor: pointer;
}

.logo {
    width: 120px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.heading {
    text-align: center;
    font-weight: bold;
    color: #11322a;
    padding-bottom: 5px;
    margin: 0;
}

.visual-divider {
    width: 100%;
    height: 3px;
    background-color: #355f55;
    border: none;
}
