*{box-sizing: border-box}

body{
    font-family: 'Didact Gothic', Century Gothic, sans-serif;
}

header {
    background-color: /*#e3989d*/#9e4036;
    color: #FFFFFF;
 
    grid-area: 1 / 4 / 2 / -2;
}

header h1{
    color: whitesmoke;
    font-family: 'Petit Formal Script', 'Galada',sans-serif;
    font-style: normal;
    font-weight: 300;
}

nav{
    font-weight: bold;
    top: 0 ;
    background-color: #b8b2ab;
    grid-area: 2 / 2 / 3 / -2;
}

nav a{
    text-decoration: none;
    color: whitesmoke;
    padding: 1rem 0rem;
    display: block;
    text-align: center;
}

nav a:hover{
    background-color: #9e4036;
}

nav ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
}

nav ul li{
    width:100%;
}

h2{
    color:#9e4036;
}

footer{
    font-size: .70em;
    text-align: center;
    padding: 1em;
    grid-area: 5 / 2 / 6 / -2;
}

a{
    color:#e3989d;
}

#wrapper{
    display:grid;
    grid-auto-rows: minmax(0px,auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}

#pinkbar{
    background-color:#9e4036 ; 
    grid-area: 1 / 1 / 2 / 9;
}

#greybar{
    background-color: /*#dbd5d8*/#b8b2ab;
    grid-area: 2 / 1 / 3 / -1;
}

main{
    padding-left:2em;
    padding-right:2em;
    display:block;
    background-color: whitesmoke;
    padding-top:1px;
    padding-bottom:1px;
    grid-area: 4 / 2 / 5 / -2;
}

form{
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 200px 1fr;
    grid-gap: .75rem;
    width: 100%;
}

#homehero{
    height:300px;
    background-image: url(scribble.jpg);
    background-size: cover;
    background-repeat:no-repeat;
    background-position: center;
    grid-area: 3 / 1 / 4 / -1;
}

#galleryhero{
    height:300px;
    background-image: url(galleryhero.jpg);
    background-size: cover;
    background-repeat:no-repeat;
    background-position: center;
    grid-area: 3 / 1 / 4 / -1;
}

#figurehero{
    height:300px;
    background-image: url(figurehero.jpg);
    background-size: cover;
    background-repeat:no-repeat;
    background-position: center;
    grid-area: 3 / 1 / 4 / -1;
}

#shophero{
    height:300px;
    background-image: url(portrait.JPG);
    background-size: cover;
    background-repeat:no-repeat;
    background-position: center;
    grid-area: 3 / 1 / 4 / -1;
}

#collabhero{
    height:300px;
    background-image: url(flower.jpg);
    background-size: cover;
    background-repeat:no-repeat;
    background-position: center;
    grid-area: 3 / 1 / 4 / -1;
}


/*#insta{
    height: 50px;
    background-image: url(insta.png);
    background-repeat: no-repeat;
    padding: 5px;
     grid-area: 5 / 2 / 6 / -2;
    
}

#email{
    height: 5px;
    width:auto;
    background-image: url(email.png);
    background-repeat: no-repeat;
    padding: 5px;
    grid-area: 5 / 2 / 6 / -2;
    
}*/


img src{
    padding: none;
    margin: none;
}

#img{
    display: flex;
    flex-wrap:nowrap;
    padding-bottom: 30px;
    height: 400px;
    float: left;
    
}

.clear{
    clear:both;
}


.gallery {
  border: none;
}

.gallery:hover {
  border: 1px solid #777;
}

.gallery img {
  width: 100%;
  height: auto;
}

.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}



@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.clear{
    clear:both;
}

@media only screen and (max-width: 1100px) {
    #wrapper {
        grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 150px)) minmax(0px, 1fr);
    }
}

@media only screen and (max-width: 992px) {
     header h1 {
        background-image: none;
        text-align:start;
    }
         
    nav {
        grid-area: 2 / 1 / 3 / 5;
    }
    nav ul{
        flex-flow: column nowrap;
    }
    #homehero, #galleryhero, #figurehero, #shophero, #collabhero  {
        grid-area: 2 / 5 / 3 / 8;
        height:auto;
    }
    section{
        float: none;
        width: 100%;
        padding-right: 0px;
    }

    
}

@media only screen and (max-width: 768px){
    header h1 {
        background-image: none;
        text-align:center;
    }
    nav{
        grid-area: 2 / 1 / 3 / -1;
    }
    #homehero, #galleryhero, #figurehero, #shophero, #collabhero {
        display: none;
    }
    
}