/* Ethan Morphew */
body{
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    min-height: 100%;
    background-color: #e9e8ee;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/*This section Covers the header at the top of the page*/
#fixed-header {
    background-image: url(images/fiber-4814456_1920.jpg);
    background-position: top;
    background-attachment: fixed;
    padding-top: 10%;
    padding-bottom: 5%;
    margin: 0;
    color: #e9e8ee;
    width: 100%;
}
#fixed-header p {
    color: #b4b1b8;
    padding: 1%;
    width: 75%;
}
#page-title, #header-nav {
    color: #e9e8ee;
    padding: 1%;
  
}
#page-title{
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 3em;
}
#header-nav ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-weight: bold;
    font-size: medium;
    width: 100%;
    display: flex;
    flex-direction: row;
    text-align: center;
    text-decoration: none;
}
#header-nav li{
    padding: 8px;
}
#header-nav a {
    color: #e9e8ee;
    text-decoration: none;
    text-align: center;
}

/* Page content, anything between the header and the footer */
#content {        
    padding: 1%;
    color:#333136;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}
.section-header {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 1.5em;
    color: #101b39;
    width: 100%;
    text-align: center;
}
#headshot img {
    border-bottom-right-radius: 30px;
    border-top-left-radius: 15px;
}
/*This section Covers the footer at the bottom of the page*/
#fixed-footer {
    border-top: 2px solid #101b39;
    background-color: #b4b1b8;
    padding: 1%;
    bottom: 100%;
}

#slideshow-image{
    width: 50%;
    margin: auto;
    display: flex;
}

@media screen and (max-width: 600px) {
    #header-nav ul{
        flex-direction: column;
    }
    #page-title {
        font-size: 2em;
        text-align: center;
    }
    #slideshow-image{
        width: 80%;
        margin: auto;
        display: flex;
    }
    #content{
        width: 80%;
    }
}

