*,
html {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #312a2a;
}

.container-navbar {
    width: 100%;
    height: 100px;
    background-color: #4a4a4a;
}

.ul-navbar {
    display: flex;
    height: 100px;
    justify-content: center;
    align-items: center;
}

.li-navbar {
    padding: 20px;
    margin: 5px;
    list-style-type: none;
    color: white;
    font-size: 20px;
}

.li-navbar:hover {
    background-color: tomato;
    color: black;
    cursor: pointer;
    transition: .5s ease-in-out;
    transition-delay: .3s;
    border-radius: 10px;
}

.a-navbar {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.container-content {
    background-color: black;
    width: 100%;
    diplay: flex;
    justify-content: center;
    align-items: center;
}

.img-content {
    display: block;
    margin: 0 auto;
    padding: 20px;
    width: 300px;
    height: auto;
}

.container-content img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.container-footer {
    width: 100%;
    height: 200px;
    background-color: #4a4a4a;
    text-align: center;
    padding-top: 20px;
    box-sizing: border-box;
}

.h1-footer {
    background-color: aqua;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    color: black;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}    