.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.container h1 {
  font-size: 4rem;
  font-weight: 700;
  color: red;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.container p {
  font-size: 1.5rem;
  color: var(--color-gray);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.icon-test {
  margin-top: 2rem;
}

.icon-test svg {
  width: 48px;
  height: 48px;
  fill: var(--color-primary);
}

@media (max-width: 768px) {
  .container h1 {
    font-size: 2.5rem;
  }
  
  .container p {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .container h1 {
    font-size: 2rem;
  }
  
  .container p {
    font-size: 1rem;
  }
}
