* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  background: #000;
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
}

.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000 url("bg-desktop.jpg") center / cover no-repeat;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(90vw, 400px);
  text-align: center;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.content p {
  margin: 18px 0 0;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

@media (max-width: 767px), (orientation: portrait) {
  .coming-soon {
    background-image: url("bg-mobile.jpg");
  }

  .content {
    width: min(72vw, 400px);
  }
}
