body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
}

.ps__thumb-y {
  background-color: rgb(255, 255, 255) !important;
  padding: 0 5px;
}

.container-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: stretch;
}

.overlay1,
.overlay2 {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.7);
}

.background-image {
  position: fixed;
  z-index: -1;
  top: -45%; /* Adjust the top position to crop 20% of the top */
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.756), rgba(255, 255, 255, 0.847)), url(../images/bgImage.jpg);
  background-size: cover;
  background-position: left bottom;
  animation: zoomAndSlideBackground 300s linear infinite;
  overflow: hidden;
  background-blend-mode: multiply;
  pointer-events: none; /* Disable pointer events for the background image */
}

@keyframes zoomAndSlideBackground {
  0% {
    background-position: left bottom;
    transform: scale(2) translateX(-25%);
  }

  100% {
    background-position: right bottom;
    transform: scale(2) translateX(25%);
  }
}

.img-fluid {
  position: relative;
  z-index: 50;
}

.hero-section {
  position: relative;
  background-color: rgba(0, 0, 0, 0.441); /* added a light black background */
}

.main-wrapper {
  width: 100%;
  padding: 0;
  position: static;
}

.hover-hook-text-bold {
  text-decoration: underline solid rgb(255, 255, 255) 3px;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.333);
}

.reg-text {
  font-size: 1.2rem;
}

.confirmation-text {
  font-size: 1.2rem;
}

.hero-content {
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.186),
    rgba(0, 0, 0, 0.186),
    rgba(0, 0, 0, 0.166),
    rgba(0, 0, 0, 0.186),
    transparent
  );
  position: absolute;

  left: 10px;
  z-index: 2;
}

.hero-content-btn {
  position: absolute;
  left: 45%;
  bottom: -80px;
  z-index: 1000;
}

.learn-more-btn {
  border: none;
  background-color: rgba(255, 255, 255, 0);
}
.fa-angles-down {
  font-size: 80px;
  color: #fff;
}

.learn-more-btn {
  color: #fff;
  font-size: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* .hover-hook-text {
  padding-left: 20px;
  padding-top: 10px;
  line-height: 1.2;
  color: #fff;
  font-size: 50px;
  font-weight: 200;
  margin: 0;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
} */

.hover-hook-text {
  padding-left: 20px;
  padding-top: 10px;
  line-height: 1.2;
  color: #fff; /* changed color to tomato red for more contrast */
  font-size: 60px; /* increased font size */
  font-weight: 200;
  margin: 0;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.667);
  animation: pulse 2s infinite; /* added a pulsating animation */
}

/* add keyframes for the pulsating animation */
/* @keyframes pulse {
  0% {
    background-color: rgba(0, 0, 0, 0.1);
  }
  50% {
    background-color: rgba(0, 0, 0, 0.2);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.1);
  }
} */

.main-text {
  color: #000000;
  font-size: 1.6em;
  line-height: 1.8;
  font-weight: 200;
  text-align: center;
  padding: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.306);
}

.secondary-text {
  color: #000000;
  font-size: 1.5em;
  font-weight: 200;
  text-align: center;
  padding: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.274);
}

.btn-quiz {
  background-color: #009688;
  color: #ffffff;
  padding: 15px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}

.bottom-container {
  background-color: rgba(255, 255, 255, 0.925);
  /*display: flex;
  align-items: center;
  justify-content: center;
  align-items: stretch;*/
  height: 100%;
}

#start-quiz-btn:hover {
  background-color: #fff;
  color: #54b4d3;
  border: #54b4d3 1px solid;
}

.outside-main-wrapper-page-2 {
  background-color: #fffffff1;
}

#page-2-body {
  overflow: hidden;
}

li {
  font-size: 25px;
  font-weight: 200;
}

.form-container {
  overflow: scroll;

  height: fit-content;
}