* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
html, body {
  height: 100%;
}
 
body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px 40px;
  text-align: center;
}
 
.container {
  max-width: 750px;
  width: 100%;
}
 
h1 {
  font-weight: 500;
  font-size: clamp(1.75rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
  color: white;
  font-family: "Montserrat", sans-serif;
}
 
p {
  font-weight: 300;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: #cccccc;
}
 
@media (max-width: 768px) {
  body {
    padding: 24px 28px;
  }
}
 
@media (max-width: 480px) {
  body {
    padding: 20px 20px;
  }
}