body {
    font-size: 1.1em;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFC857;
    color: #F3DFC1;
}

main {
    background-color: #177E89;
    padding: 1%;
}

h1 {
    text-align: center;
    margin-bottom: 1%;
    color: #323031;
    
}

h2 {
    background-color: #084C61;
    color: #FFC857;
    text-align: center;
}

footer {
    
    text-align: center;
}

ul {
    list-style: none;
    padding: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    place-items: center;
    grid-auto-flow: dense;
    margin: 0 auto;
}

.footerlinks {
    line-height: 2;
    
}

a:link {
    color: #FFC857;
}

a:visited {
    color: #D3FCD5;
}

a:hover {
    color: #DB3A34;
}

a {
    text-decoration: none;
}

.portfolio {
    text-align: center;
    font-size: 1.25em;
}

nav {
    background-color: #323031;
    font-size: 1.25em;
    padding: .5% 0;
    width: 100%;
}

ul li {
    position: relative;
}

ul li:hover ul {
    visibility: visible;
    left: -120px;
}

ul li ul {
    visibility: hidden;
    position: absolute;
    display: flex;
    flex-flow: column;
}

ul li ul li { 
    background: #323031; 
    text-align: center;
    width: 250px;
  }

.grid-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    place-items: center;
    margin: 0 auto;
}

@media only screen and (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}