*,
htm{
    margin: 0;
    padding: 0;
}

.container-navbar {
    background-color: #333;
    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: white;
    transition: .3s ease-in-out;
    transition-delay: .001s;
    border-radius: 8px;
}

.a-navbar {
    color: white;
    text-decoration: none;
}

.container-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.container-content:hover {

}

.img-content {
    width: 100%;
    height: 100%;
}

.img-content:hover {
    transition: ease-in;
    transition-delay: .5s;
    border-radius: 10px;
}

.container-footer {
    height: 10vh;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.h3-footer {
    color: white;
    font-size: 25px;
}