* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html,
body {
width: 100%;
height: 100%;
}

body {
background: #111111;
color: #ffffff;
font-family: Arial, Helvetica, sans-serif;
}

.container {
width: 100%;
min-height: 100vh;


display: flex;
align-items: center;
justify-content: center;

padding: 30px;


}

.content {
text-align: center;
max-width: 700px;
}

.eyebrow {
margin-bottom: 20px;


font-size: 13px;
font-weight: 600;
letter-spacing: 5px;

color: #888888;


}

h1 {
font-size: clamp(48px, 8vw, 90px);
font-weight: 700;
line-height: 1;


letter-spacing: -3px;


}

h1 span {
color: #777777;
}

.description {
margin-top: 30px;


font-size: 18px;
line-height: 1.7;

color: #999999;


}

.loader {
display: flex;
justify-content: center;
gap: 7px;


margin-top: 45px;


}

.loader span {
width: 6px;
height: 6px;


background: #777777;
border-radius: 50%;

animation: loading 1.4s infinite ease-in-out both;


}

.loader span:nth-child(1) {
animation-delay: -0.32s;
}

.loader span:nth-child(2) {
animation-delay: -0.16s;
}

.loader span:nth-child(3) {
animation-delay: 0;
}

@keyframes loading {
0%,
80%,
100% {
opacity: 0.3;
transform: scale(0.7);
}


40% {
    opacity: 1;
    transform: scale(1);
}


}

@media (max-width: 600px) {


.container {
    padding: 20px;
}

h1 {
    letter-spacing: -2px;
}

.description {
    font-size: 16px;
}


}
