*,
html {
    margin: 0;
    padding: 0;
}

body {
    background-color: tomato;
    height: 100vh;
}

DIV {}

.countainer-navbar {
    background-color: lab(3.2% 12.26 1.32 / 0.822);
    width: 100%;
    height: 60px;
}

.ul-navbar {
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
}

.li-navbar {
    list-style-type: none;
    padding: 5px;
    color: aliceblue;
    margin: 10px;
    font-size: 20px;
    align-items: center;
}

.li-navbar:hover {
    background-color: tomato;
    transition: .2s;
    ease-in-out;
    transition-delay: 0s;
    border-radius: 10px;
}

.a-navbar {
    color: aliceblue;
    text-decoration: none;
    font-weight: 800;
}

.countainer-content {
    background-color: hsl(41, 86%, 60%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
}

.img-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 100%;
}

.countainer-footer {
    background-color: #581a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.h1-footer {
    font-size: 30px;
    font-style: normal;
    color: white;
}