html,
body {
  margin: 0;
  height: 100%;
}
body {
  /* font-family: "Roboto Condensed", sans-serif; */
  font-family: "Gwendolyn", cursive;
  overflow: hidden;
}
.vertical-container {
  display: table;
  width: 100%;
  height: 100%;
}
.vertical-body {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.background {
  background: url(/images/clark-van.jpg) center center no-repeat;
  background-size: cover;
  animation: popup 2s;
}
.container {
  padding: 0 10px;
  margin: 0 auto;
  max-width: 960px;
  text-align: center;
  animation: blur 2s;
}

.title {
  font-size: 40px;
  margin-bottom: 0;
  animation: popup 2s;
}

@media (min-width: 768px) {
  .title {
    font-size: 50px;
  }
}

@media (min-width: 1200px) {
  .title {
    font-size: 150px;
    color: #fff;
  }
}

@keyframes blur {
  0% {
    filter: blur(12px);
  }
  100% {
    filter: blur(0px);
  }
}

@keyframes popup {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
