@import url("_root.css");

.footer {
    background: #121212;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #FFFFFF;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer li {
    margin: 0;
    padding: 0 20px 0 0;
}

.footer a:link,
.footer a:visited {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer__rights {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    height: 100%;
}

.footer__rights p {
    margin: 0;
    padding: 0;
}

.footer__logotipo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    height: 100%;
}

.footer__logotipo a:link,
.footer__logotipo a:visited {
    margin: 0;
    padding: 0;
    font-size: 34px;
    font-weight: 900;
    font-family: "Bebas Neue", sans-serif;
    color: #FFFFFF;
    text-decoration: none;
}




@media only screen and (max-width: 430px) {
    .footer__rights {
        text-align: left;
    }
}

@media only screen and (min-width: 431px) and (max-width: 768px) {
    .footer__rights {
        text-align: left;
    }
}