body {
    display: grid;
    grid-template-rows: auto;
}
.header {
    position: static;
    display: grid;
    
    grid-template-rows: repeat(2, auto) auto;
    background-color: whitesmoke;
    grid-gap: 20px;
}
.title {
    grid-row: 2;
   justify-self: center;
    align-self: start;
    font-family: helvetica, sans-serif;
   letter-spacing: 2px;
    font-size: 2em;
    margin-top: -2%
}
.logo {
    grid-row: 1;
    justify-self: center;
    max-height: 200px;
    min-height: 100px;
    min-width: 90px;
    
    
}

.nav {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-gap: 0 10px;
    background-color: #a3a1a1;
    color: whitesmoke;
    top: -14px;
    margin: 0 auto;
    padding: none;
    
    
    
}

 ul li{
    list-style: none;
     font-family: 'Gruppo', cursive;
     font-size: 1.1em;
     text-align: center;
     color: white;
     
}

#portfolio {
    grid-column: 2;
    
}

#home {
    grid-column: 1;
    justify-self: center;
    border-right: 2px solid white;
    
}

#contact {
    grid-column: 3;
    justify-self: center;
    border-left: 2px solid white;
}

img:hover {
    
}

h2 {
    font-family: 'Gruppo', cursive;
    text-align: center;
}

li:hover {
    color: #c73a28;
}

li:active {
    color: white;
}
a {
    text-decoration: none;
}

footer {
    height: 50px;
    background-color: darkgrey;
    display: grid;
    
}

Footer p {
    color: white;
    font-size: .5em;
    align-self: end;
    justify-self: center;
}

@media screen and (max-width: 600px) {
     .title {
        font-size: 1.5em
    }
    
            .nav {
    position: relative;
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10px;
    background-color: #a3a1a1;
    color: whitesmoke;
    top: -14px;
    margin: 0 auto;
    padding: none;
            
    }
   
     ul li{
    list-style: none;
     font-family: 'Gruppo', cursive;
     font-size: 3em;
     text-align: center;
     color: white;
    margin-right: 10%;
     }
    
    #home {
    
    border-right: 0;
    
}
    
   #contact {
    
    border-left: 0;
} 
 
    
    
    
    
    
    
}