body {
  height: 100%;
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #5DB075;
  color: white;
}

header {
  background: #5DB075;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
}

main {
  min-height: calc(100vh - 80px - 150px);
  padding: 5rem 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
main #title {
  font-size: 4rem;
  margin-bottom: 1rem;
  max-width: 740px;
}
main #slogan, main #subtitle {
  font-size: 1.2rem;
}
main p {
  margin: 0 0 2rem;
}
main a {
  text-decoration: none;
}
main #illustration {
  width: 45vw;
  max-width: 700px;
}

@media screen and (max-width: 915px) {
  main {
    flex-direction: column-reverse;
  }
  main #title {
    font-size: 3rem;
  }
  main #illustration {
    width: 100%;
  }
}
footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem;
}
footer a {
  color: #fff;
}

.lang-switcher button {
  background: none;
  border: none;
  margin: 0 0.5rem;
  font-weight: 600;
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */
