﻿body {
    font-family: Arial, Helvetica, sans-serif;
    margin-left: 5vw;
    margin-right: 5vw;
}

.header {
    font-family: monospace;
    display:flex;
    flex-direction:row;
    align-items:    last baseline;
    gap: 10em;
}

a {
    color:black;
}

.body {
    margin: 20vh 5em 20vh 5em;
}

nav {
    display: flex;
    flex-direction: row;
    gap: 10em;
    font-size: 14px;
}

.NavBar_Item > a {
    color: black;
    text-decoration: none;
}



.NavBar_Item {
}

nav>.NavBar_Item:hover {
    background-color: #FF7A00;
    background-position: 80% 80%;
}


.footerColumn > .NavBar_Item :hover {
    background-color: #f7f5ee;
    background-position: 80% 100%;
}

.HorizontalLine {
    margin-top: 1em;
    background-color: #FF7A00;
    height: 2px;
    width: 100%;
}


.SectionWrapper{
    width: 60vw;
    margin-top:10vh;
}

.SectionBody{
    
}

.button {
    display: flex;
    flex-direction: row;
    align-items: center;

    position: relative;
    border-style: solid;
    border-color: #FF7A00;
    border-width: 1.5px;
    padding: 5px 20px 5px 20px;
    width: stretch;
    
}

.button > div {
    
}


.button:hover {
    background-color: #FF7A00 /*#FFAF65*/;
    left: 0.1em;
    top: 0.1em;
}


h1 {
    font-family: 'Helvetica';
    font-size:3em;
    font-weight:900;
}

h2 {
    font-family: 'Helvetica';
    font-size: 3vh;
    font-weight: 900;
}

h3 {
    font-family: 'Helvetica';
    font-size: 18pt;
    font-weight: 900;
}

h4 {
    font-family: 'Helvetica';
    font-size: 16pt;
    font-weight: 500;
}

.bodyText {
    font-family: Helvetica;
    font-size: 14pt;
    font-weight: 100;
    line-height: 1.5em;
}

.description {
    font-family: Helvetica;
    font-size: 12pt;
    font-weight: 100;
    line-height: 1.5em;
    
}


#buttonInstruction {
    margin-top: 1em;
    width: 40vw;
    color: #606060;
}

.sub_SectionWrapper {
    margin-top:2em;
}



.footerColumn {
    width:200px;
    font-family:monospace;
}

.footerColumn>div>p {
    margin:0;
}

.NavBar_Item {
    text-decoration:underline;
}

#NameTitle {
    display: flex;
    flex-direction: row;
    gap: 2em;
    align-items: last baseline;
    margin-bottom: 3em;
}

.headShot {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 8em;
    width: 8em;
    border-radius: 5em;
}

#NameTitle>div>h4 {
    margin-bottom:0;
}


@media only screen and (max-width: 768px) {
    .bodyText {
        font-size:18pt;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        gap:3em;
        font-size: 12px;
    }

    .header {
        font-family: monospace;
        display: flex;
        flex-direction: row;
        align-items: first baseline;
        gap: 5em;
    }
}