@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

html { font-size: 62.5%; }

body {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  background-color: #0c0c0c;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.In-Construction {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem;
  gap: 1.6rem;
}

.In-Construction h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.6rem, 8vw, 7.2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: white;
}

.In-Construction h3 {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.construction-img img {
  max-width: 120px;
  height: auto;
  margin: 1rem auto;
  opacity: 0.6;
}

.In-Construction a:hover {
  background-color: rgba(255,255,255,0.08);
  color: white;
}

@media (max-width: 600px) {
  .In-Construction h1 { font-size: 3.6rem; }
}
