html,
body {
    margin: 0;
    min-height: 100%;
    font-family: Gill Sans;
    font: weight 20px;
    background-attachment: fixed;
    text-decoration: none;
    color: white;
}

.container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: gray;
    font-size: large;


    color: white;
    font-style: Gill Sans, sans-serif;
    box-shadow: inset;

}



a:link {
    text-decoration: none;
    color: white;
}

a:visited {
    text-decoration: none;
    color: white;
}

a:hover {
    text-decoration: none;
    color: orange;
}




.ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 3rem;
    color: azure;




}

.dropbtn {

    background-color: gray;
    color: white;
    font-family: Gill Sans;
    font-size: 22px;
    border: none;
    width: fit-content;
    justify-self: center;
    background: transparent;
    font-weight: 400;
    width: 80px;
    padding-bottom: 10px;
    padding-right: 10px;



}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 80px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    border-radius: 5px;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 2px;
    border-radius: 5px;
}

.dropdown-content a:hover {
    background-color: white;
    color: black
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: black;
}

.item {


    font-size: larger;


    padding: 5px 5px;
    width: 80px;
    height: 25px;
    justify-self: center;


    font-weight: 400;




}





.sec-container {
    margin: 0;
    padding: 0;
}

.para1 {
    font-size: 200%;
    text-align: center;
}

.para2 {
    text-align: center;
    margin: auto;
    padding: 10px;
    line-height: 2;

}

.back-video {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}



@media screen and (max-width: 480px) {


    .ul {
        display: block;


        width: 50%;
    }

    @media(min-aspect-ratio :16/9) {
        .backe-video {
            width: 100%;
            height: auto;
        }
    }

    @media(max-aspect-ratio :16/9) {
        .backe-video {
            width: auto;
            height: 100%;
        }
    }

}