
/* body{
    font-family: "Poppins";
} */



  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

  @import url('https://fonts.googleapis.com/css2?family=Syne:wght@700&display=swap');

  @import url(https://db.onlinewebfonts.com/c/3e474a09226e19ab5228436820318a72?family=PolySans+Bulky+Wide);

  
  body{
    font-family: 'Poppins', sans-serif;
 
  }


  .navbar-nav > li{
  padding-left:30px;

}

.display-1{
  font-family: "PolySans Bulky Wide";
  line-height: 90%;
}
.display-5{
  font-family: "PolySans Bulky Wide";
  line-height: 90%;
}

/* iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
} */

.herobg{
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
  .herobg iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    /* height: 100vh; */
  }
}
    
@media (max-aspect-ratio: 16/9) {
  .herobg iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}
#text{
  position: absolute;
  color: #FFFFFF;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.navbar {
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.navbar.scrolled {
  background: rgb(68, 68, 68); /* IE */
  background: rgba(0, 0, 0, 1); /* NON-IE */
  border-bottom-style: solid;
  border-width: 1px;
  border-color: var(--bs-primary);
}

.fill_white{
  fill: white;
}

#activityModal .modal-content {
  background: black;
  border-color: white;
}


.btn-outline-primary:hover {
  --box-shadow-color: var(--bs-primary);
  box-shadow: 0 0 30px var(--box-shadow-color);
}

.btn-primary:hover {
  --box-shadow-color: var(--bs-primary);
  box-shadow: 0 0 30px var(--box-shadow-color);
}

.shadow-white{
  --box-shadow-color: rgb(97, 97, 97);
  box-shadow: 0 0 30px var(--box-shadow-color);
  
}