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

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #ffffff, #cccccc);
  color: #0A0A0A;
  padding: 2rem;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
}

.container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically centers the text */
  width: 100%;
}

.heading {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
}

.heading span {
  color: #a0a0a0;
  font-weight: 600;
}

.intro {
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 600;
}

.description {
  font-size: clamp(1.5rem, 1.2vw, 1.25rem);
  max-width: 600px;
  color: #666;
}

.btn {
  background-color: #0A0A0A;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  width: fit-content;
  margin-top: 1rem;
  text-decoration: none;
}

@media (min-width: 768px) {
  .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .text-content {
    max-width: 60%;
  }
}

@media (min-width: 1200px) {
  .container {
    gap: 3rem;
    padding: 4rem;
  }
}
