html,
body{
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}
ul{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.logo{
  max-width: 250px;
  margin: 0 auto;
}
#index-page{
  background-color: #262626;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.index-page-wrapper{
  padding: 60px 0 40px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column  ;
  justify-content: center;
  align-content: space-between;
  position: relative;
  z-index: 2;
}
#index-content{
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

#index-content > .row{
  align-items: center;
  height: 100%;
}
#index-page h1{
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 40px;
  text-shadow: 0 4px 10px rgb(0 0 0 / 65%);
  font-size: 55px;
}
#index-page h2{
  color: rgb(255 255 255 / 75%);
  font-size: 26px;
}
.content-wrapper{
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.btn-register{
  display: inline-block;
  padding: 7px 17px;
  border: 2px solid #fff;
  margin-top: 20px;
  border-radius: 3px;
  text-decoration: none;
  color: #fff;
  transition: all .15s linear;
  text-transform: uppercase;
  font-weight: 500;
}
.btn-register:hover{
  background-color: rgb(225 225 225 / 30%);
  color: #fff;
}
.social-icons a{
  font-size: 40px;
  color: #fff;
}
.footer-logo{
  padding: 15px 0;
  margin-top: 40px;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer-logo img{
  max-width: 100px;
  margin: 0 auto;
  vertical-align: top;
}
#video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
#video-bg video{
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
#video-bg:after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(0 0 0 / 85%);
}

  /* Tablet */
@media only screen and (max-width: 1024px) {
  .logo{
    max-width: 30vw;
  }
  #index-page h1{
      font-size: 4.5vw;
  }
  #index-page h2{
      font-size: 3vw;
  }
}
/* Mobile */
@media only screen and (max-width: 768px) {
  .logo{
      max-width: 35vw;
  }
  #index-page h1{
      font-size: 6vw;
  }
  #index-page h2{
      font-size: 4vw;
  }
}
@media only screen and (max-width: 525px) {
  .logo{
    max-width: 50vw;
  }
}