main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 80vh;
  width: 100%;
  background-color: #000000;
  background: url("https://res.cloudinary.com/f93azfwg/image/upload/v1785967977/rockCityBanner2_vtvm7c.png") repeat;
  z-index: 0;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Adjust the opacity as needed */
  z-index: -1; /* Ensure the overlay is behind the content */
}

.book-title-container {
  width: 100%;
}

.book-title {
  color: white;
  font-size: 4em;
  text-align: center;
  text-shadow: 2px 2px 5px #000000;
}

.book-form-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  border: 2px solid red;
}

.calendly-inline-widget {
  width: 100%;
  height: 100%;
  min-height: 80vh;
}

.logo {
  scale: 0.5;
  margin: 0;
  padding: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-transform: translateY(-16vh);
          transform: translateY(-16vh);
}

.loader {
  position: absolute;
  -webkit-transform: translate(50%, 500%);
          transform: translate(50%, 500%);
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  margin: 0;
  padding: 0;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media only screen and (min-width: 849px) {
  .logo {
    scale: 1;
    margin: 0;
    padding: 0;
  }
  .calendly-inline-widget {
    margin-top: 2em;
  }
}