/*@import url('https://fonts.googeapis.com/css?family=Montserrat:400,600');*/
@import url("https://fonts.googleapis.com/css?family=Permanent+Marker&display=swap");


/*General Site Background*/
/*body {
    height: 100%;
    background-image: url(css-images/page-background.svg);
    background-size:100% 100%;
    -o-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    background-size:cover;
}*/


.background-container {
    position: fixed;
    z-index: -10;
    height: 100%;
    width: 100%;
}

.background-container img {
    position: absolute;
    height: 100%;
    width: 100%;
}

html {
    min-height: 100%;
}

/*General Site Body Format and Font*/
body {
    margin: 0;
    width: 100%;
    min-height: 100%;
    overflow: auto;
    font-family: 'Montserrat',sans-serif; /* any sans-serif font is used as a backup if Montserat is not installed */
    color: whitesmoke;
}

/*Sets style properties common to all containers*/
.container {
    background: rgb(25, 25, 25);
}

/*Title block formatting*/
.title-container {
    text-align: center;
    padding-bottom: 1em;
    width: 100%;
    height: auto;
}

/*Main Page Title Block Text Positioning*/
.title-container p, h2 {
    position: relative;
}

/*Headings and Paragraph Formatting (h2-h6, p currently left as deafault) */
h1 {
    position: relative;
}

.subhead {
    position: relative;
    font-size: 1.1em;
}


/*Video Container*/
/* Set aspect ratio */
.video-container {
    position: relative;
    overflow: hidden;
    /*height: 0;*/
    max-width: 100%;
    max-height: 100%;
    width: 800px;
    height: 400px;
    margin: 0 auto 0;
    /*padding-bottom: 45%;/*56.25%;*/
    padding-top: 0;
    padding-bottom: 0;
}

.video-container iframe,
.video-container embed {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
}


header {
    display: flex;
    justify-content: space-between;
}

.header-wrapper {
    width: 100%;
    height: 3.2em;
}


/*Hide mobile navigation drop down menu*/
.hide-mobile {
    display: none;
}

/*Hide Loaded Content*/
.hide {
    display: none;
}

/*Navigation Menu for Mobile View*/
.nav-menu {
    position: absolute;
    width: 30px;
    top: 1em;
    right: 30px;
}

/*Mobile navigation links formatting*/
.site-nav ul {
    position: fixed;
    list-style-type: none;
    width: 60%;
    text-align: center;
    background: rgb(40, 40, 40);
    right: 0;
    top: 0;
    height: auto;
    z-index: 10;
    padding: 3em 0 2em;
    opacity: 0.95;
}

/*Mobile navigation links text formatting*/
.site-nav ul li a {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 0.8em 0 0.8em;
}

.site-nav ul li a:hover {
    background-color: rgb(50,50,50);
}

.exit-btn {
    margin-bottom: 1em;
    margin-top: -1.3em;
    text-align: right;
    padding: 0 1.4em;
}

.exit-btn img {
    width: 15px;
    cursor: pointer;
}



/*Desktop Screens*/
@media only screen and (min-width: 1024px) {
    
    .show-desktop:not(.exit-btn) {
        display: block;
    }

    .hide-desktop {
        display: none;
    }

    .site-nav ul {
        position: relative;
        list-style-type: none;
        width: 100%;
        background: none;
        z-index: 1;
        padding: 0;
        margin: 0;
        height: 1em;
        font-size: 1.5em;
    }

    .site-nav ul li:not(.exit-btn) {
        display: inline-block;
        padding: 0.5em 1em 0.5em;
    }

    .site-nav li a:not(.exit-btn) {
        padding: 0.2em 1em;
    }
    
}









