/*Website Set-Up*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', 'Arial', sans-serif;
}

html {
    background-color: floralwhite;
    color: black;
}

/*Top Bar Navigation and Logo*/
nav {
    text-decoration: none;
    background: #073200;
    top: 0;
    width: 100vw;
    padding: 10px 0;
    text-align: center;
    font-size: 18px;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.navbar ul li {
    padding: 10px 0;
    border-bottom: 1px solid #29741d;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px;
}

header img {
    height: 100px;
    max-width: 100%;
    margin-left: 20px;
    padding: 0;
}

nav ul li {
  flex: auto;
  list-style-type: none;
}

.aboutheader {
    text-align: center;
    width: 100%;
    height: auto;
    min-height: 250px;
    background-color: #073200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
}

/*Header Banner*/
.aboutheader h1{
    font-weight: 800;
    font-size: 84px;
    color: floralwhite;
    margin-bottom: 0;
}

.aboutheader p{
    font-size: 36px;
    color: #073200;
    margin-top: 5px;
}

/*Main*/
main {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
  }

main p {
    font-size: 14px;
}

.hold {
    font-size: 24px;
    text-align: center;
}

/* FOOTER*/
footer {
    text-align: center;
    padding: 1em;
    background-color: floralwhite;
    color: #073200;
    clear: both;
    width: 100%;
}

caption {
    padding-top: 10px;
}

/* Small devices (tablets, 768px and up) */
@media screen and (min-width: 768px) {
    body {
        display: flex;
        flex-direction: column;
        max-width: 98%;
        margin: auto;
    }
    
    main {
        display: flex;
        flex-wrap: wrap;
    }
    
    nav, header {
        order: -1;
    }
    
    nav {
        background: #073200;
        top: 20px;
        width: 100vw;
        text-align: center;
        font-size: 18px;
}
    
    nav ul {
        flex-direction: row;
    }
    
    body, p, a, h4 {
        font-size: 15px;
    }
    
    aside {
        text-align: center;
    }
}


/* Medium devices (desktops, 992px and up) */
@media screen and (min-width: 992px) {
    .header {
        padding: 100px;
    }
    
    body {   
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }
    
    main {
        display: flex;
        flex-wrap: wrap;
    }
    
    main p {
        font-size: 18px;
    }
    
    h2 a {
       font-size: 24px; 
    }
    
    nav, header {
        order: -1;
    }
    
    nav {
        flex-direction: row;
        top: 0;
        width: auto;
        padding: 10px 0;
        text-align: center;
        font-size: 18px;
    }
    
    .navbar ul {
        flex-direction: row;
    }
    
    .navbar ul li {
        padding: 10px 0;
        border-bottom: none;
    }
    
    nav a {
        flex: auto;
    }
    
    .navbar a:hover {
        background: floralwhite;
        color: #073200;
        border-radius: 3px;
        padding: 10px 20px;
    }
    
    .article-specs {
        flex: 33%;
        padding: 10px 0;
        width: 50%;
    }
    
    aside, section {
        flex: 100%;
    }
    
    table {
        width: 75%;
        margin-left: auto;
        margin-right: auto;
    }
    
    footer {
        background-color: #073200;
        color: floralwhite;
        width: 100%;
    }
}

