/*-----------------*/
div img{
    display: flex;
    justify-content: space-around;
    position: absolute;
    filter: brightness(1000%);
}

img{
    height: 65px;
    width: 65px;
    top: 0;
    left: 0;
}

/*-----------------*/
#menu ul {
    padding: 10px;
    margin: -8px;
    background-color: #0e0e0e;
    list-style: none;
    text-align: center;
    font-size: 18px;
}

/*-----------------*/
#menu ul li {
    display: inline-block;
    position: relative;
}

#menu ul li:hover .name{
    font-size: 22px;
    transition: 0.4s;
}

/*-----------------*/
#menu ul li a{
    padding: 10px 20px;
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-family: sans-serif;
    position: relative;
}

#menu ul li a:hover{
    font-size: 22px;
    transition: 0.4s;
}

#menu ul li a:hover::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8);
    background-size: 200% 100%;
    animation: Borda 4s infinite;
}
@keyframes Borda {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/*-----------------*/
#menu ul li:hover .submenu {
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    width: 100%;
    text-align: left;
}

.submenu li {
    display: block;
}

.submenu li a {
    padding: 10px 30px;
    text-decoration: none;
    font-family: sans-serif;
}

/*-----------------*/
body{
    background-color: #1d1c1c;
}

/*-----------------*/
.titulo{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    font-size: 35px;
    color: #ffffff;
    font-family: sans-serif;
}

/*-----------------*/
footer {
    background-color: #0e0e0e;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    margin: -8px;
    font-family: sans-serif;
}

footer img{
    height: 20px;
    width: 20px;
}

footer a {
    color: #fff;
    text-decoration: none;
}