ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
ul li{
    float: left;
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 28px;
}
ul li a{
    text-decoration: none;
    color: white;
    display: block;
    font-weight: bolder;
}
ul li a:hover{
    background-color: green;
    color: black;
}
ul li a.about:hover{
    color: white;
    background-color: coral;
    font-weight: bolder;
}
ul li a.fol{
    color: white;
    font-weight: bolder;
}

ul li ul li{
    display: none;
}
ul li:hover ul li{
    display: block;
}
form{
    justify-content: center;
    min-height: 150vh;
    text-align: center;
    background-color: cornflowerblue;
    background-image: url("889.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 30px;
    font-family: "lato",Arial,sans-serif;
    font-weight: bold;
    color: blue;
}
h1{
    position: relative;
    margin: 0;
    font-size: 4rem;
    color: white;
    font-weight: 900;
    z-index: 1;
    overflow: hidden;
}
h1::before{
    content: '';
    position: absolute;
    left: 0;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%,#fff 5%, #000 100%);
    animation: animate 5.5s linear forwards;
    animation-delay: 2s;
}
@keyframes animate
{
    0%
    {
        left: 110%;
    }
    100%
    {
        left: -120%;
    }
}
h1 span{
    color: #ff022c;
}
video
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
}
h2{
    color: rgb(red, green, blue);
    font-family: 30px;
    text-align: center;
}
footer{
    background-color: #111;
    height: auto;
    width: 100vw;
    font-family: "open sans";
    padding-top: 40px;
    color: white;
}
.main-footer{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.main-footer h31{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}
.main-footer h32{
    max-width: 400px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}
.bottom{
    text-align: center;
    font-size: 28px;
}