/* 
overflow: hidden; do not remove

no scroll: use for adjusting the position of jumbotron and footer with vh without adding
to the page */

html {
  overflow: hidden;

}

body {
  overflow: hidden;
  margin: 0px;
  min-height: 100%;
  width: 100%;
  /* background: linear-gradient(rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.35)),
    url('./resources/main.JPG') no-repeat center center fixed; */
  background-size: cover;
  display: flex !important;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background-color: black;
}



main {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
}



.wrapper {
  display: flex;
  flex-direction: row;
  justify-content: end;
  width: 100%;

}
.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 2px;
}




#bg-video {
  position: absolute;  /* Position the video behind content */
  top: 60px;  /* Offset from the top, accounting for the navbar height */
  left: 0;
  width: 100%;
  height: auto;
  max-height: 450px;  /* Limit the height of the video */
  object-fit: cover;  /* Ensure video covers the container */
  z-index: -1;  /* Send the video behind the content */
}


/* for text in front of video background whole */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
  z-index: 0; /* Place overlay behind the content */
}

.content {
  position: relative;
  z-index: 1; /* Ensure the content is above the overlay */
  color: #fff; /* Make the text white or light-colored */
  text-align: center;
  padding: 50px;
}
/* for text in front of video background whole */





.fronter {
  background: transparent;
  background-size: cover !important;
  width: 100%;
  border-radius: 0;
}


.center {
  margin: auto;
  width: 50%;
  padding: 10px;
}


.btn-danger {
  color: #fff;
  background-color: #75002f !important;
  border-color: #75002f;
  /*set the color you want here*/
  box-shadow: 1px #530122 !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open>.dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #530122 !important;
  border-color: #530122 !important;
  /*set the color you want here*/
}

#index-jumbotron{
  margin-top: 30vh;
}
#index-footer {
  margin-top: -10vh;
}  


/* 
 small screens phone high dpi 
*/
@media screen 
and (max-height: 1800px) 
and (min-resolution: 300dpi){
  
  #index-jumbotron{
    margin-top: 35vh;
  }
  #index-footer {
    margin-top: -15vh;
  } 

  body {
    overflow: visible;
  }
  html {
    overflow: visible;
  }

}

/* 
bigger screens have lower dpi  */

/* 
  Big display: low dpi
 */
@media screen and (min-height: 950px) and (max-resolution: 120dpi){
  #index-jumbotron{
    margin-top: 50vh;
  }
  #index-footer {
    margin-top: 0vh;
  } 
}

/* 
  big laptop high dpi:
 */

 @media screen 
  and (min-height: 600px)
  and (max-height: 949px) 
  and (min-resolution: 250dpi){
  #index-jumbotron{
    margin-top: 58vh;
  }
  #index-footer {
    margin-top: -10vh;
  }  
}


/* 
laptop displays: mid-size low dpi
 */
 /* @media screen 
  and (min-height: 600px)
  and (max-height: 949px) 
  and (max-resolution: 249dpi){
  #index-jumbotron{
    margin-top: 40vh;
  }
  #index-footer {
    margin-top: -10vh;
  }  
} */


#logo-img{
  max-height: 200px;
  margin-left: 50px;
} 

#slogan { 
  text-shadow: 1px 1px 3px rgba(247, 32, 32, 0.1), 0 0 25px rgba(243, 3, 3, 0.425) !important;
}


