*{
    padding: 0;
    margin: 0;
}


body{
    background-image: url("sa.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position:center ;
    background-attachment: fixed;


}

body::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0,0.4);
    z-index: -1;
    

}

ul{

    display: flex;
    list-style: none;
    justify-content: right;
}

li{
    margin: 10px;
    margin-left: 15px;
    margin-top:24px ;
}

a{
    text-decoration: none;
    color: rgb(28, 3, 120);
    padding: 10px;

}

a:hover{

    background-color: rgb(196, 246, 255);
    color: black;
    border-radius: 20px;


}


.heading{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.heading h3{
    background-color: bisque;
    padding: 7px;
    border-radius: 20px;

}

.heading p{
    margin-top: 20px;
    background-color: bisque;
    padding: 20px;
    border-radius: 20px;
}

.heading a{
    margin-top: 20px;
    background-color: bisque;
    border-radius: 20px;
}

.heading a:hover{
    background-color: aquamarine;
    color: black;
}

.inclusive{
    display: flex;
    margin: 10px;
    justify-content: center;
    align-items: center;
    
}

.inclusive img{
    margin: 10px;
    background-color: beige;
    padding: 10px;
    border-radius: 10px;
}

.main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    margin-bottom: 20px;
}