body {
    display: grid;
    grid-template-rows: repeat(5,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 {
    transform: scale(1.1);
}

.info {
    display: grid;
    grid-template-columns: 30% auto;
    grid-template-rows: repeat(2, auto);
}

#contactInfo {
    grid-column: 1;
    background-color: lightgray;
   
    
}

#contactInfo, h2, h3, p{
    margin-left: 5%;
}

#contactInfo h2 {
    color: white;
    font-family:sans-serif;
    letter-spacing: .1em;
    
    
}
.contactHead {
    background-color: darkgray
}
.info h3{
    color: #b5322d;
    font-family: 'Avenir', sans-serif;
    font-variant-caps: all-small-caps;
    
    }

#contactInfo p{
    font-family: sans-serif;
    font-size: .7em;
    margin-top: -4%;
    
}
#about {
    display:grid;
    grid-template-rows: repeat(3,auto);
}
#aboutHead {
    grid-row: 1;
    font-family: sans-serif;
    border-top: 2px solid #b5322d;
     border-bottom: 2px solid #b5322d;
}

#aboutPara {
    grid-row: 2;
    text-align: left;
}

li:hover {
    color: #c73a28;
}

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

footer {
    height: 50px;
    background-color: darkgrey;
    grid-row: 5;
    margin-top: 1%;
    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;
    }
    .info{  
    grid-template-columns:  auto;
    grid-template-rows: repeat(2, auto);
        }
    
        .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;
} 
    
    
    
    
}
