body {
    display: grid;
    grid-template-rows: auto;
    background-color: #c9c7c7;
    
}
/*---------------------Email section--------------*/
.emails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 1% 2%;
    margin-top: 3%;
    justify-items: center;
    align-items: center;
    margin-bottom: -10%;
    
}

#email1 {
    
    grid-column: 1;
    grid-row: 1;

}

#email2 {
    grid-column: 2;
    grid-row: 1;

}

#email3 {
    grid-column: 3;
    grid-row: 1
}

#email4 {
    grid-column: 1;
    grid-row: 2;

}
#email5 {
    grid-column: 2;
    grid-row: 2;

}

#email6 {
    grid-column: 3;
    grid-row: 2;
}
/*------------------------------------------------*/

.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);
}

.lineTitle {
    font-family: Avenir, sans-serif;
  
    height: 3em;
    margin-top:10px;
    background-color: #adabab;
    color:white;
    text-align: center;
    
}

h2 {
    margin-top: 10px;
}

#web {
    margin-top: 15%;
    
}
#ban {
    margin-top:;
}
.banners {
    display: grid;
    grid-template-rows: repeat(3, auto);
    padding-top: 2%;
    grid-gap: 5px;
    width: 80%;
    margin: 0 auto;
    
}

.banners img {
    padding-bottom: 2%;
    
}

.social {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 2fr 1fr;
    grid-gap: 10px;
}

.social img {
    grid-column: 2
}

.print {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 80%;
    margin: 0 auto;
    padding-top: 2%
    
}

#insert {
    grid-column: 2;
    justify-self: center;
}

.gifs {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(3, 1fr);
    width: 80%;
    justify-content: center;
    margin: 0 auto;
    grid-gap: 5px 5px;
    padding-top: 2%
}

#christmas {
    grid-column: 1/3;
    grid-row: 2;
    margin-top: -22%
}
#slip {
    grid-column: 1/3;
    grid-row: 1;
}

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

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

a {
    text-decoration: none;
}






li:hover {
    color: #c73a28;
}

li:active {
    color: white;
}

@media screen and (max-width: 600px) {
    
 
    .emails {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        margin-bottom: .5%;
        margin-top: 5%
    }  
    
    .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;
} 
 
    
    
    
    
    
    
    
    
    
}