*, 
html {
    margin: 0;
    padding: 0;
}


.container {}

.container-navbar {
    background-color: rgb(10, 122, 227);
    width: 100%;
    height: 10vh;
}

.ul-navbar {
    display: flex;
    height: 100px;
    justify-content: center;
    align-items: center;
}

.li-navbar {
    list-style-type: none;
    padding: 20px;
    margin:5px;
    color: white;
    font-size: 30px;
}


.li-navbar:hover {
    background-color: rgb(1, 24, 24);
    transition: .3s ease-in-out;
    transition-delay: .3s;
    border-radius: 8px;
}

.a-navbar {
    color: white;
    text-decoration: none;
    font-weight: 800;
}

.container-content {
    background-color: rgb(3, 237, 250);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.a-content {
    background-color: white;
    color: black;
    text-decoration: none;
    font-size: 30px;
    width: 1080px;
    height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 80px;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
                -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
                -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

.img-content {
    width: 50%;
    height: 50%;
}

.container-footer{
    height: 10vh;
    background-color: rgb(4, 134, 247);
    display: flex;
    justify-content: center;
    align-items: center;
}

.h1-footer {
font-size: 40px;
color: white;
}