* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #111111;
  font-family: Inter, sans-serif;
  color: white;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #202020 0%, #111111 75%);
}

.container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 40px;
}

.logo {
  width: 300px;
  filter: drop-shadow(0px 0px 18px rgba(255,255,255,.12));
  margin-bottom: 35px;
}

h1 {
  font-family: Oswald, sans-serif;
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

h2 {
  font-size: 24px;
  font-weight: 300;
  color: #d78d25;
  margin-bottom: 40px;
}

.divider {
  width: 120px;
  height: 2px;
  background: #555;
  margin: 30px auto;
}

.launch {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.description {
  font-size: 20px;
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 45px;
}

.contact {
  font-size: 22px;
  line-height: 2;
}

footer {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #666;
  z-index: 2;
}

@media (max-width: 700px) {
  body {
    align-items: flex-start;
  }

  .container {
    padding: 32px 22px 70px;
  }

  .logo {
    width: 220px;
    margin-bottom: 24px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  h2 {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .divider {
    margin: 22px auto;
  }

  .launch {
    font-size: 24px;
  }

  .description {
    font-size: 17px;
    margin-bottom: 28px;
  }

  .contact {
    font-size: 18px;
  }

  footer {
    position: relative;
    bottom: auto;
    margin-top: -35px;
    padding-bottom: 20px;
  }
}
