body {
  background: #000;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.center-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem 1rem;
}

#coming-soon {
  color: #fff;
  opacity: 0;
  font-size: 2.5rem;
  transition: opacity 2s ease;
  text-align: center;
}

#logo-fadein {
  max-width: 90vw;
  width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 24px auto;
  opacity: 0;
  transition: opacity 2s ease;
}

@media (max-width: 600px) {
  #coming-soon {
    font-size: 1.5rem;
  }
  #logo-fadein {
    width: 80vw;
    max-width: 95vw;
  }
}

footer {
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 1rem 0;
  font-size: 0.9rem;
  position: fixed;
  bottom: 0;
  left: 0;
  background: transparent;
}