footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color-var);
    padding: 2vh;
    margin-top: 5vh;
    border-radius: 10px 10px 0 0;
}

footer .credits {
    font-size: 1em;
    font-weight: 500;
    text-align: center;
    color: var(--white);
}

footer .credits a {
    text-decoration: none;
    color: var(--blue);
}

footer .credits a:hover {
    text-decoration: underline;
}

footer .footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

footer .footer-container .logo img {
    width: 150px;
}

footer .footer-container .usefull-links, footer .footer-container .donate {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .footer-container .usefull-links .title, footer .footer-container .donate .title {
    font-size: 2em;
    font-weight: 700;
    color: var(--white);
}

footer .footer-container .usefull-links .links {
    display: flex;
    flex-direction: column;
}

footer .footer-container .usefull-links .links a {
    padding: 1vh 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--main-color);
    font-weight: 700;
}

footer .footer-container .usefull-links .links a:hover {
    transform: translateX(10px);
}

footer .footer-container .usefull-links .links a svg {
    margin: 0 1vh;
}

footer .footer-container .donate a {
    background-color: #142C8E;
    color: var(--white);
    border: solid 2px #142C8E;
    border-radius: 5px;
    padding: 1vh;
    font-size: 1.5em;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

footer .footer-container .donate a svg {
    margin: 0 1vh;
}

footer .footer-container .donate a:hover {
    background-color: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

@media only screen and (max-width: 800px) {
    footer {
        flex-direction: column;
    }

    footer .footer-container .logo {
        display: none;
    }

    footer .footer-container .usefull-links .title, footer .footer-container .donate .title {
        font-size: 1.3em;
    }

    footer .footer-container .donate a {
        font-size: 1em;
    }
}

@media only screen and (max-width: 450px) {
    footer .footer-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}