footer{
    width: 100%;

    padding-top: 10px;
    background-image: var(--backg-img-footer);
    color: var(--color-p);
}

footer h1{
    padding-top: 10px;
    padding-left: 50px;
}

.hec{
    display: flex;
    justify-content:space-around;
    text-align: center;
    padding-top: 70px;
    font-size: 21px; 
}

.hec ul{
    list-style-type: none;
}

.hec a{
    color: rgb(0, 238, 255);
    text-decoration: none;
}

.lob2{   
   text-align: center;
   padding-top: 60px;
   padding-bottom: 70px;
   
} 

.lob2 a{
    color: var(--color-p);
    font-size: 20px;
    text-decoration: none;
    padding: 10px;
}

.lob2 a:hover{
    color: var(--color-hover);
    transition: .5s;
    padding: 20px;
    border-bottom: solid var(--color-hover);
} 

.footer-creditos{
    width: 100%;
    height: 50px;

    display: flex;
    align-content: end;
    justify-content: center;
    align-items: center;

    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(20, 20, 20);
    color: #9c9c9c;
}

.footer-creditos a{
    font-family: cursive;
    color: rgb(189, 189, 189);
    text-decoration: none;
}

.footer-creditos a:hover{
    color: rgb(61, 146, 202);
}

@media (max-width: 500px) {
    .hec{
        flex-direction: column;
        gap: 20px;
    }

    .ps{
        justify-content: center;
    }
}

