* {
  box-sizing: border-box;
}
body {
  font-family:'Belleza', sans-serif;
}
.logo {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 12px;
  flex-grow: 1;

  /*max-width: 480px;*/
  width: 95%;
}

.logo img {
  height: auto;
  max-width: 20%;
}
.logo .title {
  flex-grow: 2;
  margin: 30px;
}

.logo h2 {
  margin: 0;
  font-weight: 300;
}

.resume {
  float: right;
  text-decoration: none;
  padding: 5px;
}


.designwork{
  width:70%;
  margin: 0 auto;
  padding:10px;
}

.designwork img{
  width:100%;

}


svg {
  font-size: 4em;
  font-weight: 900;
  text-transform: uppercase;
  flex-grow: 1;
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  display: block;
}
svg .stroke {
  fill: none;
  stroke: #000;
  stroke-width: 2px;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: draw 2s ease-in forwards;
}

@keyframes draw {
  from {
    stroke-dashoffset: 1200;
  }
  to {
    stroke-dashoffset: 0;
  }
}
nav > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 80%;
  margin: 0 auto;
}
nav a {
  width: 40%;
  margin: 25px 0;
  text-decoration: none;
  text-align: center;
  color: #000;
  font-size: 20px;
}
nav a:visited {
  color: #000;
}
nav img {
  width: 100%;
}

.grid,
.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 1500px;
  margin-top: 6em;
}
.grid a {
  padding: 1em;
  position: relative;
}
.grid a img {
  width: 100%;
}
.contact h1 {
  font-size: 60px;
  margin-top: 2em;
}
.contact a {
  font-size: 35px;
  font-weight: 300;
  text-decoration: none;
  color: black;
  margin-bottom: 7em;
}
.wrap {
  position: relative;
}
p {
  position: relative;
  color: black;
  margin-top: 35%;
  font-size: 1.5em;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  z-index: 20;
  transition: opacity 0.5s, transform 0.35s;
}
.wrap h3 {
  position: relative;
  color: black;
  font-size: 1.15em;
  font-weight: 300;
  text-align: center;
  opacity: 0;
  z-index: 20;
  transition: opacity 0.5s, transform 0.35s;
}
.grid a:hover p {
  opacity: 1;
  transform: translate3d(0, -50px, 0);
}
.grid a:hover h3 {
  opacity: 1;
  transform: translate3d(0, -50px, 0);
}
.grid a:hover .red {
  opacity: 1;
}
.red {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: white;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
}
.mix {
  display: none;
}

@media (min-width: 800px) {
  nav > div {
    width: 100%;
    max-width: 1000px;
  }
  nav a {
    width: 10%;
    min-width: 100px;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .grid a {
    width: 33.333%;
  }

  .artwork {
    width: 50%;
    padding: 20px;
    text-align: center;
  }

  .artwork img {
    width: 100%;
  }

  .poster img {
    width: 60%;
  }
}

@media (min-width: 900px) {
  .red {
    font-size: 1em;
  }
}
