html {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 18px;
}

a {
  color: #5b7487;
  text-decoration: none;
}

h1 {
  font-family: 'Delius', sans-serif;
  padding: 40px 20px 10px 20px;
  font-size: 3em;
  color: #9aa250;
  margin-block: 0;
}

.Body {
  width: min(100vw, 1000px);
  font-family: 'DM Sans', sans-serif;
  font-weight: 200; 
}

.Header {
  flex: 1;
  display: flex;
  align-items: center;
  margin-right: 18px;
  gap: 25px;
  font-size: 32px;
  font-family: 'Delius', sans-serif;
}

@media (max-width: 600px) {
  
  .Header {
    gap: 20px;
    font-size: 26px;
  }
}

@media (max-width: 520px) {
  .Header {
    gap: 14px;
    font-size: 18px;
    margin-right: 6px;
  }
}

.HeaderLeftSide {
  flex: 1;
  align-items: end;
}


.HeaderLogo {
  max-width: min(33vw, 300px);
}

.MainHero {
  background-image: url("images/lu0420.jpg");
  background-position: bottom left;
  background-size: cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.MainHeroOverlay {
  background: #ffffffc0;
  color: #c05d70;
  font-family: 'Clicker Script', sans-serif;
  font-size: 36px;
  padding: 12px 50px 12px 50px;
}

.About {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px
}

.AboutText {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

.AboutImageContainer {
  flex: .4;
  min-width: 300px;
  height: 400px;
}

.AboutImage {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.Testimonials {
  display: flex;
  flex-direction: row;
  align-items: start;
  flex-wrap: wrap-reverse;
}

.TestimonialsText {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 00px 20px 20px 20px;
  min-width: 300px;
}

.TestimonialsImageContainer {
  flex: .8;
  margin-top: 20px;
  min-width: 300px;
  height: 400px;
}

.TestimonialsImage {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.BookNow {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 60px;
  padding: 20px;
}

.BookNow a {
  background-color: #5b7487;
  color: white;
  font-size: 20px;
  padding: 20px;
}