*,
html {
margin: 0;
padding: 0;
}
.container{
height: 100
}
div {
background-color: aliceblue;
}
.navbar-container {
background-color:rgb(0, 118, 151);
width: 100%;
}
.ul-navbar {
height: 10vh;
display: flex;
justify-content: center;
align-items: center;
}
.li-navbar {
list-style-type: none;
padding: 10px;
color:rgb(255, 255, 255);
font-size: 10px;
}
.li-navbar:hover{
background-color:rgb(0, 169, 253);
transition: .2s ease-in-out;
transition-delay: .1s;
border-radius: 8px;
}
.a-navbar{
color:white;
text-decoration: none;
}
.container-content{
height: 70vh;
background-color: rgb(150, 232, 255);
display:flex;
justify-content:center;
align-items:center;
padding: 10px;
}
.img-content{
width: 30%;
height: 30%;
}
.a-img{
background-color: white;
width: 30% ;
height: 30%;
display: flex;
justify-content: center;
align-items: center;
border-radius: 80px;
text-decoration: none;
flex-direction: column;
box-shadow: 5px 5px 15px 5px #000000;
}
.footer-container{
display: flex;
height: 10vh;
justify-content:center;
align-items:center;
background-color:rgb(0, 118, 151);
}
.h1-footer{
color: white;
font-size: 30px;
}