body
{
    font-family: "Bebas Neue", sans-serif;
}

.video-container {
    position: relative;
    overflow: hidden;
    height: 80vh; /* Full screen height */
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease; 
}

.fade-in.visible {
    opacity: 1; 
}

.jumbotron-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
}

.jumbotron-content h1 {
    font-size: 8rem;
    font-weight: bold;
}

.jumbotron-content p {
    font-size: 2rem;
}

#navbarNav {
    text-align: center;
}

.nav-item{
margin: 2rem;
font-size: 5rem;
margin-top: none !important;
}

.card {
    border: none;
}

.col-md-4{
    padding-top: 50px;
}

.card img {
    transition: ease-in-out 1s;
}

.card img:hover {
    transition: ease-in-out 1s;
    border-radius: 6.5em;
}

.navbar .container-fluid {
    justify-content: center !important;
}



@media only screen and (max-width: 983px) {
    .nav-item{
        margin: 1rem;
        font-size: 3rem;
        }

        .navbar-nav {
            display: flex;
            flex-direction: row !important;
        }
  }
  

  @media only screen and (max-width: 951px) {
    .nav-item{
        margin: 1rem;
        font-size: 2rem;
        }

        .navbar-nav {
            display: flex;
            flex-direction: row !important;
        }
  }
  


  @media only screen and (max-width: 432px) {
    .nav-item{
        margin: 1rem;
        font-size: 1rem;
        }

        .navbar-nav {
            display: flex;
            flex-direction: row !important;
        }

        h1{
            font-size: 5em !important;
        }

        .jumbotron-content p  {
            font-size: 2em !important;
        }
  }
  