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

/* =========================
   Full-height layout
========================= */
.container-full-height {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.index-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

/* =========================
   Frame
========================= */
.frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  text-align: center;
}

/* =========================
   Icon
========================= */
.icon {
  width: clamp(80px, 20vw, 160px);
  height: clamp(80px, 20vw, 160px);
}

/* =========================
   Text
========================= */
.text {
  font-size: clamp(18px, 4.5vw, 60px);
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.text--dark {
  color: #000000;
}

@media (max-width: 480px) {
  .text {
    white-space: normal;
    word-break: break-word;
  }
}
