* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #111111;
}

.coming-soon {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.brand {
  text-align: center;
  animation: fadeIn 1.4s ease forwards;
}

.logo {
  width: auto;
  height: 280px;
  max-width: 70vw;
  display: block;
  margin: 0 auto 60px auto;
  user-select: none;
pointer-events: none;
-webkit-user-drag: none;
}

.slogan {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 110px;
}

.status {
  min-height: 18px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.75;
  white-space: nowrap;
}

.status::after {
  content: "";
  display: inline-block;
  height: 11px;
  margin-left: 6px;
  border-right: 1px solid #111111;
  animation: cursorBlink 0.8s step-end infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cursorBlink {
  0%,
  100% {
    border-color: transparent;
  }

  50% {
    border-color: #111111;
  }
}

@media (max-width: 600px) {
  .logo {
    width: auto;
    height: 230px;
    max-width: 75vw;
    margin-bottom: 48px;
  }

  .slogan {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .status {
    font-size: 10px;
    letter-spacing: 2px;
  }
}