.video{
    height: 700px;
    width: 80%;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;

}
body{
    margin: 0;
    background-color: rgb(20, 20, 20);
    background-image: linear-gradient(230deg , rgb(57, 91, 76) ,rgb(95, 67, 86));
}
.nav{
    height: 100px;
    position: fixed;
    background-color: #ffffff71;
    bottom: 0;
    width: 100%;
}
.btn{
    height: 80px;
    width: 80px;
    border-radius: 100px;
    background-color: #4680ff;
    color: #fff;
    border: none;
    margin-top: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.btn i{
    font-size: 40px;
}
.vcc{
    display: none;
}
.dnav{
    left: 5%;
    height: 60px;
    width: 90%;
    background-color: #ff068f;
    position: fixed;
    top: 0;
    border-radius: 100px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    text-align: center;
    animation: ant 0.8s;
}

.dnav button{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    background-color: #e03f98;
    color: white;
    border-radius: 100px;
    height: 50px;
    width: 50px;
    border: none;
    margin-top: 3px;
}
@keyframes ant {
    0%{width: 0%;}
    100%{width: 90%;}
}