:root {
  --main-bg-color: rgba(255, 255, 255, 0.8);
  --header-bg-color: rgba(255, 255, 255, 0.8);
  --theme-color: #3E5404;
  --theme-dark-color: #2D4303;
  --theme-light-color: #5AAD07;
  --main-text-color: #000000;
  --contrast-text-color: #ffffff;
}

body
{
	margin: 0 !IMPORTANT;
	padding: 0 !IMPORTANT;
	
	background-image: url("/images/background.jpg");
	background-size: 100%;
    background-attachment: fixed;
    background-size: cover;
    
	color: var(--main-text-color);
	font-size: 100%;
}

a
{
    color: inherit;
    text-decoration: none;
}

#header
{
	width: 100%;
    //height: 7vw;
    
    background-color: var(--header-bg-color);
    font-size: 7em;
    
    display: flex;
    justify-content: start;
    align-items: center;
}

@media only screen and (max-width: 1000px)
{
    #header
    {
        flex-direction: column;
    }
}

#header > div
{
    display: flex;
    justify-content: start;
    align-items: center;
}

#header > div > img
{
    margin-left: 0.2em;
    height: 1em;
}

#header > div > span
{
    font-size: 0.5em;
}

.horizontal
{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.vertical
{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

#nav
{
    height: 100%;
    width: 100%;
    
    padding: 0;
    margin: 0;
    list-style-type: none;
}

#nav > li
{
    width: 9em;
    height: 2em;
    margin: 0.1em;
    
    background-color: var(--theme-color);
    color: #ffffff;
    
	font-size: 0.2em;
}

#nav > li:hover
{
    background-color: var(--theme-dark-color);
}

#nav > li > a
{
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 100%;
    height: 100%;
    
    color: var(--contrast-text-color);
    text-decoration: none;
}

#content
{
    margin: 5em 0 5em 0;
    width: 100%;
    font-size: 1.5em;
}

#content > div
{
    background-color: var(--main-bg-color);
}

.highlight
{
    color: var(--theme-light-color);
    font-weight: bold;
}

#footer
{
	width: calc(100% - 2em);
    
    background-color: var(--main-bg-color);
	padding: 0em 0em 0em 2em;
    
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
}

#footer > span
{
    width: 100%;
    margin: 1em 0;
}