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

html, body {
  height: 100%;
  overflow: hidden;
}

.page {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #ffff00;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.header {
  flex-shrink: 0;
  height: 56px;
  background: #000;
  display: flex;
  align-items: center;
  padding-left: 35px;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.line {
  position: absolute;
  background: #000;
}

.line-left {
  left: 10vh;
  top: 56px;
  width: 2px;
  height: 100%;
}

.line-right {
  right: 10vh;
  top: 56px;
  width: 2px;
  height: 100%;
}

.line-top {
  top: calc(56px + 10vh);
  left: 0;
  width: 100%;
  height: 2px;
}

.line-bottom {
  bottom: 10vh;
  left: 0;
  width: 100%;
  height: 2px;
}

.content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 5vw, 3rem);
  color: #000;
  letter-spacing: -1.5px;
  text-transform: lowercase;
  line-height: 1.2;
  text-rendering: geometricPrecision;
}
