*,
html{
    margin: 0;
    padding: 0;
}

.body{
    
}

.navbar{
    background-color: turquoise;
    width: 100%;
    height: 15%;
}

.UL{
    display: flex;
    height: 100px;
    justify-content: center;
    align-items: center;
}

.LI{
    list-style-type: none;
    padding: 20px;
    margin: 5px;
    color: rgb(253, 253, 253);
    font-size: 30px;
}

.LI:hover{
    background-color: rgb(255, 77, 6);
    transition: .2s ease-in-out;
    transition-delay: .3s;
    border-radius: 15px;
}

.a-navbar{
    color: #000000;
    text-decoration: none;
    font-weight: 800;
}

.CONTENT{
    background-color: rgb(150, 150, 150);
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto ;

}

.a-content{
    width: 320px;
    height: 500px;
    background-color: aliceblue;
    color: hsl(206, 100%, 1%);
    text-decoration: none;
    font-size: 20px;
    text-shadow: #000407;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 80px;
    box-shadow:box-shadow: 20px 11px 3px -3px rgba(0,0,0,0.75);
-webkit-box-shadow: 20px 11px 3px -3px rgba(0,0,0,0.75);
-moz-box-shadow: 20px 11px 3px -3px rgba(0,0,0,0.75); ;
}

.img{
    width: 50%;
    height: 25%%;
}

.FOOTER{
    background-color: darkturquoise;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.h1{
    font-size: 40px;
}