/* layout */
.full-black {
  background-color: var(--secondary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  box-sizing: border-box;
}

/* content */
.full-black .content {
  max-width: 800px;
}

/* headline */
.full-black h1 {
  font-size: clamp(4rem, 9vw, 5.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--background-color);
  text-align: center;
}

/* paragraph */
.full-black p {
  font-size: clamp(1rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1.6;
  text-align: center;
}

/* media queries */
@media (max-width: 1024px) {
  .full-black h1 {
    text-align: left;
    padding-left: 1rem;
    font-size: clamp(3.5rem, 3vw, 5.5rem);
  }
  .full-black p {
    text-align: left;
    padding-left: 1rem;
    font-size: clamp(2rem, 3vw, 3rem);
  }
}
