@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,500;9..40,700&display=swap");

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

:root {
  --ff-sans: "DM sans", sans-serif;
  --Colors-White: #fff;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  gap: 1rem;
  background: linear-gradient(135deg, red, blue);
}

.LandingPage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  height: 80%;
  align-items: center;
  gap: 3rem;
}

.LandingPage__title {
  color: var(--Colors-White);
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 3.625rem;
  font-weight: 700;
  line-height: 4.375rem;
  letter-spacing: -0.0625rem;
}

.LandingPage__text {
  color: var(--Colors-White);
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2rem;
}

.LandingPage__buttons {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.LandingPage__button {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: 3.125rem;
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  color: var(--Colors-White);
  width: 15rem;
  background-color: black;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.LandingPage__button:hover {
  background-color: white;
  color: black;
}

@media (max-width: 48rem) {
  .LandingPage__buttons {
    flex-direction: column;
  }
}
