body {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5% 2%;
}
header {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding-bottom: 50px;
    border-bottom: 2px solid black;
}
.logo {
    width: 200px;
}
h1 {
    text-transform: uppercase;
    letter-spacing: 20px;
    text-align: right;
    font-size: 4em;
    padding: 0 0 0 20px;
    margin: 0 0 10px 0;
}
h2 {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 20px;
    text-align: right;
    font-size: 1.6em;
    padding: 0;
    margin: 0;
}
nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    align-content: flex-end;
    justify-content: flex-end;
    padding: 40px 0;
}
nav li {
    padding: 0 30px;
}
p {
    line-height: 1.4em;

}
p a {
    color: black;
    text-decoration: none;
}
p a:hover {
    text-decoration: underline;
}
label {
    width: 200px;
}
nav a {
    font-weight: 300;
    letter-spacing: 5px;
    color: black;
    text-decoration: none;
}
nav a:hover {
    text-decoration: underline;
}
.desc {
    padding:    2%;
}
.about {
    display: flex;
    justify-self: center;
    align-items: center;
}
.img img {
   max-width: 300px;
   height: auto;
}

footer ul {
    padding: 5% 2%;
    margin: 0;
    list-style-type: none;
    display: flex;
    align-content: flex-end;
    justify-content: flex-end;  
}
footer li {
    text-indent: -9999999px;
    padding: 0 10px;
}
footer li a {
    display: block;
    width: 50px;
    height: 50px;
}
footer li a.email {
    background: url('../img/email.png') center no-repeat;
    background-size: 50px;
}
footer li a.insta {
    background: url('../img/instagram.png') center no-repeat;
    background-size: 50px;
}
footer li a.behance {
    background: url('../img/behance.png') center no-repeat;
    background-size: 50px;
}
footer li a.etsy {
    background: url('../img/etsy.png') center no-repeat;
    background-size: 50px;
}

@media only screen and (max-width: 1000px) {
    header,main, footer {
        display: block;
        text-align: center;
    }
    .about {
        display: block;
    }
    .logo {
        margin: 0 auto;
    }
    h1,h2 {
      letter-spacing: 10px;
      text-align: center;
    }
    nav ul,footer ul {
        align-content: center;
        justify-content: center;
    }
  }

  @media only screen and (max-width: 412px) {

    .logo {
        width: 150px;
    }
    h1 {
        font-size: 3em;
    }
    h2 {
        font-size: 1.2em;
    }
    nav li {
        padding: 0 10px;
    }
  }