:root {
  --primary-color: #3A786E;
  --primary-color-light: #4B9B80;
}

body {
  background-color: var(--primary-color-light);
  color: white;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  background: linear-gradient(to bottom right, var(--primary-color), var(--primary-color-light));
  height: 100vh;

  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: center;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 72px;
  line-height: 80px;
  letter-spacing: -1%;
  font-weight: 500;
  text-align: center;
}

a {
  color: white;
  text-decoration: underline;
  font-size: 21px;
}

@media (max-width: 1024px) {
  .container {
    padding-top: 256px;
    justify-content: flex-start;
  }

  a {
    color: white;
    text-decoration: underline;
    font-size: 35px;
  }
}
