/* HEADER */
header{
    min-height: 100%;
    max-width: auto;
}

/* BODY */
body {
    background-image: url("Images/BackgroundZap2.gif");
    background-color: rgb(96, 255, 178);
    color: black;
    font-family: Verdana;
}

/* HORIZONTAL RULES */
hr {
    margin-top: 2vw;
    margin-bottom: 2vw;
    margin-left: 3vw;
    margin-right: 3vw;
}

/* IMAGES */
img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    -webkit-user-select: none; /* Safari, Chrome */
    -webkit-user-drag: none;
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE */
    user-select: none; /* CSS3 */

}

/* NAV (NEWEST) */

* {
    margin: 0;
    padding: 0;
}

nav {
    width: 100%;
    min-height: 48px;
    background-color: black;
    justify-content: center;
    -webkit-user-select: none; /* Safari, Chrome */
    -webkit-user-drag: none;
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE */
    user-select: none; /* CSS3 */

}

nav ul {
    display: flex;
    flex-direction: row;
    font-size: 1.5vmax;
    color: white;
    padding: 10px 10px;
    text-decoration: none;
    justify-content: center;
}

nav ul li {
    float: left;
    /*flex-direction: column;*/
    list-style: none;
    position: relative;
}

nav ul li:hover {
    background-color: #68386c;
}

nav ul li a {
    display: block;
    font-size: 1.5vmax;
    color: white;
    padding: 10px 10px;
    text-decoration: none;
}

nav ul li ul {
    display: none;
    position: absolute;
    background-color: black;
    padding: 0px;
}

nav ul li:hover ul {
    display: block;
}

nav ul li ul li {
    width: 360px;
}

nav ul li ul li a {
    padding: 8px 14px;
}

nav ul li ul li a:hover {
    background-color: #68386c;
}

/* LOGOS */
.logo {
    max-width: 50%;
    max-height: auto;
    display: flex;
    flex-direction: row;
}

.logoHeader {
    max-width: 100%;
    max-height: 100%;
    flex-direction: row;
    justify-content: center;
}

.logoLeft { 
    justify-content: left;
}

.logoRight { 
    justify-content: right;
}

/* DIV */
.divcentered {
  display: flex;
  justify-content: center;
}

.divcolumn {
    display: flex;
}

.divlist {
    text-align: center;
    margin-top: 2vw;
    margin-bottom: 2vw;
}

.divparagraph {
    margin-left: 3vw;
    margin-right: 3vw;
}

/* CONTAINER */
.flexbox {
    display: flex;
    margin-left: 3vw;
    margin-right: 3vw;
    margin-top: 4vh;
    margin-bottom: 3vh;
    max-width: 70vw;
    justify-self: center;
}


/* FIGURES */
figure {
    display: flex;
    margin: 20px; /* adjust as needed */
    justify-content: center;
    text-decoration: none;
    -webkit-user-select: none; /* Safari, Chrome */
    -webkit-user-drag: none;
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE */
    user-select: none; /* CSS3 */
}

figure a {
    justify-content: center;
    text-decoration: none;
    color: black;
}

figure img {
    vertical-align: top;
    justify-self: center;
    height: 15vw;
    width: 15vw;
    justify-content: center;
}
figure figcaption {
    text-align: center;
    text-decoration: none;
}

/* PHONE */
@media (max-width: 600px) {
    .flexbox {
        max-width: 100vw;
    }
    .divcolumn {
        flex-direction: column;
    }
    figure img {
        width: 100vw;
        height: 100vw;
    }
}
