* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fee0c9;
  font-family: "Source Serif 4", serif;
  color: #131315;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.7rem;
}

.launch-text {
  font-size: 2rem;
  font-weight: 400;
  opacity: 0.9;
}

.logo {
  max-width: 80%;
  width: 460px;
  height: auto;
  object-fit: contain;
}

.description {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
  font-weight: 400;
  max-width: 600px;
}

@media (max-width: 600px) {
  .launch-text {
    font-size: 1.5rem;
  }

  .description {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .logo {
    width: 320px;
  }
}
