@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto-regular.eot');
  src: url('fonts/roboto-regular.eot?#iefix') format('embedded-opentype'),
  url('fonts/roboto-regular.woff2') format('woff2'),
  url('fonts/roboto-regular.woff') format('woff'),
  url('fonts/roboto-regular.ttf') format('truetype'),
  url('fonts/roboto-regular.svg#robotoregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

html {
  font-family: "Roboto", "Helvetica Neue", sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: rgb(72, 90, 99);
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.6em;
}

.content {
  display: table;
  position: absolute;
  height: 100%;
  width: 100%;
}

.middle {
  display: table-cell;
  vertical-align: middle;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  height: 80%;
  max-width: 400px;
  max-height: 160px;
  text-align: center;
  margin-top: -10%;
  position: relative;
  transition-property: width, height, max-width, max-height;
  transition-duration: 0.3s;
  will-change: opacity;
  animation-delay: 0.3s;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-name: fadeIn;
  animation-timing-function: ease;
}

.logo {
  width: 100%;
  height: 100%;
}

.coming-soon {
  transition-property: font-size;
  transition-duration: 0.3s;
  margin: 0;
  will-change: opacity;
  animation-delay: 1.3s;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-name: fadeIn;
  animation-timing-function: ease;
  font-size: 0.8em;
  line-height: 1.4;
}
.subheading {
  font-size: 0.5em;
  color: #666666;
  animation-delay: 1.6s;
}
.sub-subheading {
  font-size: 0.45em;
  color: #999999;
  animation-delay: 2.5s;
}

@media only screen and (min-width: 400px) {
  body {
    font-size: 1.8em;
  }
}

@media only screen and (min-width: 600px) {
  body {
    font-size: 1.9em;
  }
  .inner {
    max-width: 500px;
    max-height: 100px;
  }
}

@media only screen and (min-width: 800px) {
  body {
    font-size: 2em;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
