*{
    margin:0;
    padding:0;
    font-family: sans-serif;
    box-sizing: border-box;
}
/*body{
   background-color: black;
}*/
.banner{
    display: flex;
    flex-wrap: wrap;
    width:100%;
    height:100vh;
    background-image: linear-gradient(rgba(51, 5, 5, 0.4),rgba(0,0,0,0.40)); 
}

/*.videostyle video{
    width:100%;
    display: flex;
    z-index: -1;
}*/
.videostyle{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Ensure video is behind the content */
    position: absolute;
}

.logo {
    width:100px;
    margin-top: 2vh;
    height: 100px;
    cursor:pointer;
}

.navbar{
    display: flex;
    align-items: center;
    height:10vh;
    justify-content: space-between;
    width: 95%;
    padding:30px;
}

.navbar ul li{
    list-style-type: none;
    display: inline-block;
}

.navbar ul li a{
    text-decoration: none;
    text-transform: uppercase;
    color:white;
    font-weight: 600;
    padding: 15px;
}

li a:hover{
    background-color: white;
    transition: 0.6s;
}

.navbar a:hover{
    color:black;
}

.content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:20vh;
    text-align: center;
}

.content h1{
    font-size: 50px;
    font-weight: 800;
    color:white;
}

button{
    width:200px;
    padding:15px;
    margin:20px 5px;
    text-align: center;
    border-radius: 25px;
    color:black;
    border:2px;
    font-size: 20px;
    cursor:pointer;
    font-weight: 600;
}

button:hover{
    background: rgb(0,192,226);
    transition: 0.8s;
    color:white;
}



@media screen and (max-width:700px){
    .navbar{
        flex-direction: column;
        align-items:start;
        
    }
    .logo {
        margin-top: -20px;
    }
    .navbar ul li{
        display: block;
    }
    .navbar ul li a{
        line-height: 50px;
    }
    .content{
        margin-top: 70px;
    }
}