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

html, body {
  height: 100%;
  width: 100%;
  background-color: #0e0e0e;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  padding: 20px;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: 2px;
}

p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-top: 1rem;
  opacity: 0.7;
}
