@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');


html {
	height: 100%;
}

body {
	padding: 0px;
	margin: 0px;
    font-family: 'Open Sans', sans-serif;
}

p {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    padding-top: 5px;
}

.subheader {
    padding-bottom: 0;
    margin-bottom: 0;
}

button:hover {
    text-decoration: underline;
}

footer {
    background-color: #3E3D3D;
    padding: 10px;
    padding-top: 25px;
    box-sizing: border-box;  
    width: 100%;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
	font-size: .75em;
}

footer > section > ul {
    text-decoration: none;
    list-style: "- ";
	padding-left: 10px;
}

footer > ul > li {
    margin: 5px;
}

footer > ul > li > a:hover, a:visited, a:link, a:active {
    text-decoration: none;
    color: white;
}
footer > ul > li > a:hover {
    text-decoration: underline;
}

footer > a:hover {
    text-decoration: underline;
}

footer > section {
    margin: 15px;
}

button {
    margin: 1em;
    background-color: #404040;
    color: white;
    padding: 12px;
    border: none;
    font-size: .8em;
    font-weight: bolder;
}

nav {
	font-weight: 400;
}

#desktop-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #3E3D3D;
    color: white;
    display: flex;
    align-items: center;
	font-size: .9em;
}

#desktop-nav > a {
    margin: 10px;
}

#mobile-nav {
    display: none;
    position: fixed;
	height: 100%;
    top: 0;
    width: 0px;
    background-color: #3E3D3D;
    color: white;
    flex-direction: column;
	animation-iteration-count: 1;
	font-size: 1.5em;
}

#mobile-nav > a, #mobile-nav > button {
    padding: 15px;
}

#nav-spacer {
    height: 15px;
}

.mailto-link {
    text-decoration: none;
    color: white;
}

#hamburger {
    margin: 0px;
	padding: 8px;
    border: none;
    font-size: 1.2em;
    font-weight: normal;
    text-decoration: none;
    background-color: #3E3D3D;
}

#logo {
    width: 30vw;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#content-container {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
}

#row {
	flex-direction: row;
}

#col {
	flex-direction: column;
}

@media only screen and (max-width: 750px) {
	#logo {
        width: 50vw;
    }

    #desktop-nav > a {
        display: none;
    }

	#desktop-nav > #hamburger {
		font-size: 3em;
	}
	
	#nav-spacer {
		height: 55px;
	}

	footer {
		font-size: 1em;
	}
}

@media only screen and (min-width: 750px) {
    #mobile-nav {
        display: none;
    }

    #hamburger {
        display: none;
    }

	body {
		-webkit-text-size-adjust: 100%;
	}
}

@keyframes open-nav {
	0%{width: 0%;}
	100%{width: 75%;}
}