* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  max-height: 100svh;
  justify-items: end;
}

@media screen and (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    height: 100%;
    max-height: initial;
    justify-items: center;
    background-image: url("/assets/austria-vorarlberg-mellau.webp");
    background-size: cover;
  }
}

.grid-item {
}

.landing-page__content {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 65%;
  padding-right: 3rem;
  font-size: larger;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .landing-page__content {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
    padding: 16px;
    margin: 16px;
    font-size: larger;
    letter-spacing: 1px;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.75);
  }
}

.landing-page__header {
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .landing-page__header {
    margin-bottom: 0;
  }
}

.landing-page__header img {
  height: 100%;
}

@media screen and (max-width: 768px) {
  .landing-page__header img {
    height: auto;
    min-width: 18rem;
  }
}

.landing-page__img {
  grid-column: 2;
}

@media screen and (max-width: 768px) {
  .landing-page__img {
    display: none;
  }
}

img {
  width: 100%;
  height: auto;
}

.button {
  display: inline-block;
  padding: 0.25rem 2rem;
  text-align: center;
  text-decoration: none;
  color: #000;
  background-color: grey;
  border: 2px solid grey;
  border-radius: 3rem;
  height: 35px;
  font-size: 18px;
}

.button--secondary {
  color: grey;
  background-color: #fff;
  padding: 0.25rem 5rem;
}

.button-group {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

@media screen and (max-width: 768px) {
  .button-group {
    align-self: center;
    flex-direction: column;
  }
}
.input__email {
  height: 35px;
  width: 23rem;
  border-radius: 3rem;
  border: 2px solid grey;
  text-align: center;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .input__email {
    max-width: 23rem;
    width: 100%;
    min-width: 18rem;
  }
}

.content--width {
  width: 100%;
}