body {
  margin: 0px;
  overflow: hidden;
}

.header-name {
  text-align: center;
  font-size: 48px;
  margin-top: 0px;
}

p{
  font-family: "Cormorant Garamond", monospace;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.header-name-text{
  margin: 0px;
}

.header{
  display: flex;
  justify-content: center;
  margin: 0px;
  padding: 0px;
  width: auto;
  height: 4rem;
  background-color: #FFF;
}


.footer{
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 3.75rem;
  background-color: #0D1035;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
}

.footer-email, .footer-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-book {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-book-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 9.25rem;
  height: 2.625rem;
  background: linear-gradient(#0D1035, #0D1035) padding-box,
    linear-gradient(to bottom right, rgba(255, 190, 120, 1) 0%, rgba(153, 114, 72, 1) 100%) border-box;
  box-shadow: -3px -4px 20px rgba(255, 255, 255, 0.2), 3px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5rem;
  border: 2px solid transparent;
}

.footer-email-a, .footer-phone-a, .footer-book-btn-a {
  font-family: "Cormorant Garamond", monospace;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-size: 1rem;
  text-decoration: none;
  color: white;

}

.carousel {
  position: absolute;
  top: 4rem;
  bottom: 3.75rem;
  left: 0px;
  right: 0px;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.content, .content-page-2{
  position: relative;
  height: 100%;
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.content-page-3 {
  position: relative;
  height: 100%;
  scroll-snap-align: start;
  overflow: hidden;
  display: grid;
  grid-template-columns: 3fr 2fr;
  justify-content: center;

  align-items: center;
  text-align: center;
  padding: 0rem 2rem;
  box-sizing: border-box;
}

.content-text{
  position: absolute;
  display:inline;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-size: 42px;
  margin-top: 5rem;
}

.image-wrapper {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 25rem;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 90%;
  filter: brightness(0.5);
}

.content-page-3-description {
  font-size: 2rem;
  text-align: left;
  align-items: left;

}

.footer-image {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-image-img {
  position: absolute;
  bottom: -0.5rem;

  width: 16rem;
  transition: bottom 0.6s ease, transform 1s ease, width 1s ease;
}

.footer-image-img-raised {
  bottom: 50vh;
  transform: translateY(50%);
  width: 25%;
}

@media (max-width: 768px) {
  .header-name {
    font-size: 32px;
  }

  .carousel {
    position: fixed;
    bottom: 7rem;
  }

  .content-text {
    left: 0px;
    right: 0px;
    padding: 0rem 1.25rem;
    box-sizing: border-box;
    font-size: 26px;
    margin-top: 3rem;
  }

  .content-page-3 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    padding: 0rem 1.25rem;
  }

  .content-page-3-description {
    font-size: 1.1rem;
  }

  .content-page-3-imgspacer {
    height: 14rem;
  }

  .footer {
    position: fixed;
    height: 7rem;
    grid-template-columns: 1fr 7rem;
    grid-template-rows: 1fr 1fr 1fr;
  }

  .footer-email {
    grid-area: 1 / 1 / 2 / 2;
  }

  .footer-phone {
    grid-area: 2 / 1 / 3 / 2;
  }

  .footer-book {
    grid-area: 3 / 1 / 4 / 2;
  }

  .footer-image {
    grid-area: 1 / 2 / 4 / 3;
  }

  .footer-email-a, .footer-phone-a, .footer-book-btn-a {
    font-size: 0.9rem;
  }

  .footer-book-btn {
    width: 8.5rem;
    height: 2.25rem;
  }

  .footer-image-img {
    width: 6.75rem;
    right: 0.75rem;
  }

  .footer-image-img-raised {
    bottom: 30vh;
    width: 40%;
  }
}