.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 90%;
    min-height: 90vh;
    margin: 0%;
}

.textcontainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-size: 1.5em;
    width: 50%;
}

.menuButton {
    border: 1px solid #000;
    padding: 10px 20px;
    background: yellow;
    font-size: 2em;
    cursor: pointer;

}

/* Style the navigation bar */

#navbar {
    display: flex;
    justify-content: center;
    background-color: #000;
    margin-bottom: 3px;
}

.navbar {
    width: auto;
    background-color: #000;
    overflow: auto;
    min-height: 50px;

}

/* Navbar links */
.navbar a {
    float: left;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-size: 12px;
    border-radius: 15px;
    margin: 5px;
    font-family: monospace;
    font-size: 1.5em;
    border: 2px solid black;
    color: #fff;
}

/* Navbar links on mouse-over */
.navbar a:hover {
    background-color: purple;
    color: #fff !important;

}

/* Current/active navbar link */
.active {
    background-color: #fff;
    color: #000 !important;
}

/* Add responsiveness - will automatically display the landscape banner or portrait banner, also menu orientation */

@media screen and (orientation: landscape) {

    .banner {

        display: flex;
        background-image: url("images/Banner.png");
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        height: 0;
        padding-top: 41.84%;
        /* (img-height / img-width * container-width (100%)) */

    }
}

@media screen and (orientation: portrait) {
    .banner {
        background-image: url("images/BannerSmol.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 0;
        padding-top: 100%;

    }

    .navbar a {
        float: left;
        display: block;
        font-size: 3em;

    }

    .footer a {
        float: none;
        display: block;
        font-size: 2.5em;
    }

    .grid > div > div {
        flex-grow: 1;
        min-width: 90%;


    }
}

/* center images */

.center_one {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center_two {
    display: flex;
    align-items: center;
    justify-content: center;
}

.center_three {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
}

.fotorama_center_two {
    display: flex;
    align-items: center;
    justify-content: center;
}

body {

    font-family: monospace;
    /*min-height: 80vh;
    display: flex;
    flex-direction: column;*/

}

p {

	text-align: center

	}

h1 {

	text-align: center

	}


h2 {
    width: 50%;
    color: white;
    background-color: black;
    padding: 10px; 
    border-radius: 15px;
    align-items: center;
}

#italic {
    color: black;
    font-family: sans-serif;
}


#text {
    font-size: 1.5em;
    display: inline-block;
    width: 50%;
}


#footer {
    display: flex;
    justify-content: space-around;
    background-color: #fff;
    margin-top: auto;
}

.footer {
    width: auto;
    background-color: #fff;
    overflow: auto;
    min-height: 50px;

}

.footer a {
    float: left;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-size: 12px;
    border-radius: 15px;
    margin: 3px;
    font-family: monospace;
    font-size: 1.5em;
    border: 3px outset #000;
    color: #000;
}

/* Navbar links on mouse-over */
.footer a:hover {
    background-color: purple;
    color: #fff !important;

}

.blank {
    background-color: #fff;
    width: 100%;
    height: 0;
    padding-top: 15px;
}

.grid > div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex: 1;

}

.grid > div > div {
    border-style: outset;
    border-width: 4px;
    border-color: darkgray;
    background-color: lightsteelblue;
    border-radius: 15px;
    margin-left: 5px;
    margin-top: 5px;
    flex-grow: 1;
    width: 25%;
    padding: 15px;
    font-size: 1.5em;
    margin-left: 2.5%;
    margin-right: 2.5%;
    margin-bottom: 2.5%;
    margin-top: 2.5%;

}

.grid > div > div:nth-child(even) {}

.grid > div > div:nth-child(odd) {}
