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

:root {
  --color-bg: #F7F7F7;
  --color-text: #1a1a1a;
  --font-base: "DM Sans", sans-serif;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow-x: hidden;
}

.coming-soon {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.coming-soon__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 640px;
}

.coming-soon__logo {
  display: block;
  width: min(520px, 88vw);
  height: auto;
}

.coming-soon__title {
  margin-top: 30px;
  font-family: var(--font-base);
  font-size: clamp(24px, 4.6vw, 60px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

@media (max-width: 480px) {
  .coming-soon {
    padding: 20px;
  }

  .coming-soon__logo {
    width: min(360px, 90vw);
  }

  .coming-soon__title {
    margin-top: 22px;
  }
}