/* Global */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  font-family: "Archivo", sans-serif;
  background: linear-gradient(180deg, #141414 0%, #111111 50%);  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

/* Container */
.coming-soon-container { text-align: center; padding: 0 20px; }

/* Logo */
.logo { display: inline-block; line-height: 1.1; }

.logo-main {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

.logo-main .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}

.logo-you { color: #56bcf9; } /* branded blue */

.logo-sub {
  display: block;
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: 5px;
  margin-top: 4px;
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
  animation-delay: 1.6s; /* after all letters animate */
}

/* Subtext */
.sub-text {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  opacity: 0.7;
   opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 2s forwards;
  animation-delay: 2s; /* after all letters animate */
}

/* Fade-up animation */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .logo-main { font-size: 2.5rem; }
  .logo-sub { font-size: 0.9rem; letter-spacing: 3px; }
  .sub-text { font-size: 1rem; }
}
