@font-face {
  font-family: 'Bogam';
  src: url('/Bogam.woff') format("woff");
  font-weight: normal;
  font-style: normal;
  font-weight: normal;
  font-style: normal;
}

body {
  overflow-x: hidden;
}

.video-container {
  position: relative;
  /* Allows child elements to be positioned relative to this container */
  width: 100%;
  /* Make the container fill the width of its parent */
  padding-bottom: 58%;
  /* This creates a 16:9 aspect ratio (9/16 * 100). Adjust for other aspect ratios. */
  height: 0;
  /*  Ensure the padding-bottom creates the height */
  overflow: hidden;
  /* Hide anything that extends beyond the container */
  border: 10px solid rgba(255, 102, 49, 1);
  border-radius: 15px;
  background-color: rgba(255, 102, 49, 1);
  margin-top: 32px;
}

.video-container iframe {
  position: absolute;
  /* Position the video over the padded area */
  top: 0;
  left: 0;
  width: 100%;
  /* Make the video fill the container width */
  height: 100%;
  /* Make the video fill the container height */
  border: none;
  /* Remove any default borders */
}

.image-container {
  border: 10px solid rgba(255, 102, 49, 1);
  border-radius: 15px;
  background-color: rgba(255, 102, 49, 1);
}

.cabin-image {
  width: 100%;
  max-width: 750px;
  height: auto;
  border: 20px solid rgba(255, 102, 49, 1);
  border-radius: 15px;
}

button:hover {
  cursor: pointer;
}

.card-header {
  letter-spacing: 0.5px;
  font-family: "Bogam";
  -webkit-text-stroke: 0.5px rgba(29, 142, 66, 1);
  line-height: initial;
  margin: unset;
  align-self: center;
}

.i-bought-one-header {
  letter-spacing: 0.5px;
  font-family: "Bogam";
  -webkit-text-stroke: rgba(246, 232, 214, 1); 
  line-height: initial;
  margin: unset;
  align-self: center;
}

.small-text {
  letter-spacing: 0.5px;
}

.title-icon {
  margin-left: 4px;
  margin-right: 4px;
}

.title h1 {
  font-size: 290px !important;
  line-height: 290px !important;
  height: 290px !important;
}

.title-medium h1 {
  font-size: 200px !important;
  line-height: 200px !important;
}

.title-small h1 {
  font-size: 90px !important;
  line-height: 90px !important;
}

.title-xsmall {
  font-size: 50px !important;
  line-height: 50px !important;
}

@media only screen and (max-width: 900px) {
  .title h1 {
    font-size: 260px !important;
    line-height: 260px !important;
    height: 260px !important;
  }

  .title-medium h1 {
    font-size: 170px !important;
    line-height: 170px !important;
  }
}

@media only screen and (max-width: 800px) {
  .title h1 {
    font-size: 230px !important;
    line-height: 230px !important;
    height: 230px !important;
  }

  .title-medium h1 {
    font-size: 160px !important;
    line-height: 160px !important;
  }
}

@media only screen and (max-width: 700px) {
  .title h1 {
    font-size: 200px !important;
    line-height: 200px !important;
    height: 200px !important;
  }

  .title-medium h1 {
    font-size: 140px !important;
    line-height: 140px !important;
  }

  .title-small h1 {
    font-size: 60px !important;
    line-height: 60px !important;
  }
}


@media only screen and (max-width: 600px) {  .title h1 {
    font-size: 170px !important;
    line-height: 170px !important;
    height: 170px !important;
  }

  .title-medium h1 {
    font-size: 90px !important;
    line-height: 90px !important;
  }
}

@media only screen and (max-width: 500px) {
  .title h1 {
    font-size: 120px !important;
    line-height: 120px !important;
    height: 120px !important;
  }

  .title-medium h1 {
    font-size: 70px !important;
    line-height: 70px !important;
  }

  .title-xsmall {
    font-size: 40px !important;
    line-height: 40px !important;
  }
}

body {
  -webkit-transition: font-size 2s;
   -moz-transition: font-size 2s;
     -o-transition: font-size 2s;
        transition: font-size 2s;
}

#scrollToTop {
  display: none; 
  position: fixed; 
  bottom: 20px; 
  right: 30px; 
  z-index: 99; 
  border: none; 
  outline: none; 
  background-color: rgba(34, 34, 34, 0.5); 
  color: rgba(246, 232, 214, 1); 
  cursor: pointer;
  padding: 15px; 
  border-radius: 32px; 
  font-size: 18px; 
}

#scrollToTop:hover {
  background-color:rgba(29, 142, 66, 0.5); /* Add a dark-grey background on hover */
}