
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: black;
  }
  
  #background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; 
  }
  
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    text-align: center; 
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  
  .textimage {
    width: 90%;
    height: 60%;
    background-image: url(./images/bookings.png);
    background-size: 99%;
    background-position: center;
    background-repeat: no-repeat;
  }

  .buttons {
    margin: auto;
    position: absolute;
    bottom: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .button{
    width: 25vh;
    height: 4vh;
    background-color: #222222;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.5vh;
  }
  .button:hover{
    background-color: #222222ce;
    transition: 0.3s;
  }

  a{
    text-decoration: none !important;
    color: white;
  }
  .logo{
    width: 7%;
    height: 10%;
    margin: auto;
    position: absolute;
    top: 10%;
    background-image: url(./images/logoboom.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 99%;
  }

  .roster_item{
    display: flex;
  }

  .roster_item_leftname{
    font-size: 26px;
    margin-right: 40px;
    width: 200px;
  }

  .roster_item_line{
    margin-right: 50px;
    border: 1px solid rgba(255, 255, 255, 0.13);
  }

  .roster_item_rightlink{
    font-size: 26px;
    margin-right: 40px;
    color: rgba(255, 255, 255, 0.13);
    cursor: pointer;
    transition: 0.3s;
  }

  .roster_item_rightname{
    font-size: 26px;
    color: rgba(255, 255, 255, 0.13);
    cursor: pointer;
    transition: 0.3s;
  }
  .roster_item_rightname:hover{
    color: white;
    transition: 0.3s;
  }
  .roster_item_rightlink:hover{
    color: white;
    transition: 0.3s;
  }