*,
html{
    margin: 0;
    padding: 0;
}

.situ{}


.navbar{
    background-color: crimson;
    width: 100%;
     height: 10vh;
}

.ul-navbar {
    display: flex;
    height: 100px;
    justify-content: center;
    align-items: center;
}

.li-navbar{
    list-style-type: none;
    padding: 10px;
    margin: 10px;
    color: white;
    font-size: 20px;

}

.li-navbar:hover{
    background-color: blue;
    transition: .2s ease-in-out;
    transition-delay: .3s;
    border-radius: 8px;
}

.a-navbar{
    color: white;
    text-decoration: none;
    font-weight: 800;
}

.CONTENT{
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh ;
}

.a-content{
    background-color: white;
    color: black;
    text-decoration: none;
    font-size: 30px;
    width: 720px;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 80px;
    -webkit-box-shadow: 5px 5px 8px 6px #000000; 
box-shadow: 5px 5px 8px 6px #000000;
}


.img-content {
    width: 50%;
    height: 50%;
}

.footer {
    height: 10vh;
    background-color: crimson;
    display: flex;
    justify-content: center;
    align-items: center;
}



.h1-footer {
    font-size: 40px ;
    color: white;


}