html {
  height: 100vh;
  overflow: hidden;
}

body {
  background: #d6efd8;
  font-family: "Lexend", sans-serif;
  perspective: 1px;
  color: #e2f4d0;
  transform-style: preserve-3d;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.material-symbols-outlined {
  vertical-align: bottom;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.about {
  font-size: 2.2em;
  background-color: #eff1f5;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  border-radius: 30px 30px 0 0;
  color: #4c4f69;
  margin-bottom: 0;
}

.section1,
.section2 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  transform-style: preserve-3d;
}
.section1::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("./gardenbg.webp") top center;
  background-size: cover;
  transform: translateZ(-1px) scale(2.2);
  filter: blur(2px);
}
.section1::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("./garden.webp") top center;
  background-size: cover;
}
.section1 .text {
  top: -15%;
  transform: translateZ(-0.5px) scale(1.5, 1.6) translate(-33%, 10%);
}

.section2 {
  background: rgb(128, 175, 129);
  display: flex;
}

.content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.content > div {
  width: 55%;
  margin-top: 2rem;
}

.yap {
  font-size: 1.6rem;
}

.map {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 2rem;
}

.address {
  display: inherit;
  text-align: left;
  flex-direction: column;
}
li {
  margin: 2rem 0;
  font-size: 20px;
  word-wrap: break-words;
  list-style-type: none;
}

.parallax-window {
  min-height: 400px;
  background: transparent;
}

iframe {
  border-radius: 15px;
}
#phone {
  text-decoration: none;
  font-weight: 600;
  color: inherit;
}
.text {
  top: 30%;
  left: 50%;
  position: absolute;
  font-weight: 800;
  font-size: 11vw;
  color: white;
  text-shadow:
    2px 2px 5px rgba(0, 0, 0, 0.3),
    5px 5px 70px rgba(255, 255, 255, 0.5);
  transform: scale(1, 1.1) translate(-50%, 10%);
}

@media screen and (max-width: 950px) {
  .section1 .text {
    font-size: 14vw;
    top: 10%;
  }
  .content > div {
    width: 90%;
  }
  .yap {
    font-size: 1.2rem;
  }
  .map {
    flex-direction: column-reverse;
    font-size: 1.4rem;
  }
  .address {
    padding-bottom: 2rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  iframe {
    width: 95% !important;
    margin-top: 1rem;
    height: 20rem !important;
  }
}
