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

body {
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  text-align: center;
}

.site-title {
  font-size: clamp(0.7rem, 1.5vw, 1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.site-title .han {
  margin-right: 0.5em;
}

.site-title .dot {
  margin: 0 0.3em;
}

h1 {
  text-transform: uppercase;
  letter-spacing: 0.7em;
  font-size: clamp(1rem, 5vw, 3rem);
  text-align: center;
  line-height: 1.4;
  padding: 2rem;
  width: 100%;
  word-break: keep-all;
  overflow-wrap: normal;
}

@media (min-width: 1280px) {
  h1 {
    white-space: nowrap;
    font-size: 1.6vw;
  }
}
