*,
html {
    margin: 0;
    padding: 0;
}

.container {
    height: 100vh;
}

.container-navbar {
    background-color: crimson;
    width: 100%;
    height: 10vh;
}

.ul-navbar {
    width: 100%;
    display: flex;
    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: maroon;
    transition: 0.5s ease-in-out;
    transition-delay: 0.2s;
    border-radius: 8px;
}

.a-navbar {
    color: white;
    text-decoration: none;
    font-weight: 800;
}

.container-content {
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.a-content {
    color: black;
    text-decoration: none;
    font-size: 30px;
    width: 720px;
    height: 480px;
    background-color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    border-radius: 80px;
    box-shadow: -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0); 
box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
}

.img-content {
    widht: 50%;
    height: 50%;
}

.contatiner-footer {
    background-color: crimson;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
}

.h1-footer {
    background-color: crimson;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: #f7f7f7;
}
