/* Imports */
@import url(https://fonts.googleapis.com/css?family=Poiret+One);
/* Breakpoints */
* {
  box-sizing: border-box;
}

.container {
  animation: fadeIn 2s 0.5s ease-in both;
  margin: 0 auto;
  max-width: 1080px;
  padding: 100px 18px 0;
  position: relative;
  width: 100%;
}
.container div {
  height: 36px;
  margin-bottom: 18px;
}
@media screen and (min-width: 920px) {
  .container div {
    height: 48px;
  }
}
.container div:before {
  animation: fadeIn 2s 2s ease-in both;
  background: rgba(0, 0, 0, 0.2);
  content: " ";
  height: 36px;
  left: 18px;
  position: absolute;
  right: 18px;
}
@media screen and (min-width: 920px) {
  .container div:before {
    height: 48px;
  }
}

body {
  background: darkslategray;
  color: white;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 100;
}

h1 {
  font-family: "Poiret One", sans-serif;
  font-size: 40px;
  font-weight: 100;
}
@media screen and (min-width: 640px) {
  h1 {
    font-size: 56px;
  }
}
@media screen and (min-width: 920px) {
  h1 {
    font-size: 72px;
  }
}
@media screen and (min-width: 1280px) {
  h1 {
    font-size: 90px;
  }
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
