*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}
.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(23, 61, 110);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar ul{
display: flex;
list-style: none;
margin: 10px 0px;

}
.navbar ul li {
    font-family: century;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 6px;
    
}
.navbar ul li a{
    text-decoration: none;
    padding: 4px 10px;
    /* color: white; */
    transition: all .5s ease ;
    background-color: white;
    color: black;
    box-shadow: 0 0 20px white;
    border-radius: 30px;
    border: solid rgb(11, 10, 10); 
}
.navbar ul li a:hover {
    background-color: rgb(183, 70, 70);
    color: white;
    box-shadow: 0 0 10px white;
}

body{
    background-color: rgb(199, 216, 229);
}
.video{
    margin-bottom: 7px;
    
}
.block{
    /* background-color: rgb(203, 206, 186); */
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 30px;
}
#image{
    background-color: rgb(161, 190, 201);
    padding: 20px;
     box-shadow: 0 0 20px black;
    margin-bottom: 10px;
    margin-top: 10px;
    z-index: 999;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#image:hover{
    background-position: left bottom;
    border: none;
    box-shadow: 0 0 20px rgb(255,45,45);
}

.headings{
    font-family: century;
    font-size: 1.1rem;
    text-align: center;
    margin: 10px 0px;
    
}
h1{
    margin-bottom: 25px;
    border-bottom: 2px solid rgb(100, 38, 38);
    /* border-bottom: 2px solid rgb(246, 244, 244); */
}
.btnn{
    padding: 5px 35px;
    background-color: rgb(11, 49, 59);
    color: white;
    box-shadow: 0 0 10px white;
    margin: 3px;
    transition: .6s ease;
    border-radius: 30px;
}


