:root {
    --footer-img-size: 80px
}

footer {
    background-color: #121212f6 !important;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 16px !important;
    color:aliceblue;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    user-select: none;
}

@media only screen and (min-width: 360px) { 
    :root { --footer-img-size: 100px; } 
    .footer { flex-direction: row;}
}
@media only screen and (min-width: 480px) { :root { --footer-img-size: 130px; } footer { font-size: 18px !important; } }
@media only screen and (min-width: 720px) { :root { --footer-img-size: 180px; } footer { font-size: 20px !important; } }
@media only screen and (min-width: 1024px) { :root { --footer-img-size: 250px; } footer { font-size: 22px !important; } }


.footer__title {
    font-size: 1.4em;
    margin: 12px;
    text-align: center;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__contact-email {
    color: antiquewhite;
    text-decoration: none;
    transition: transform 0.15s;
    margin: 4px 0 4px 0;
}

.footer__contact-email > img {
    width: calc(var(--footer-img-size) * .38);
    height: calc(var(--footer-img-size) * .38);
}

.footer__contact-email:hover {
    transform: scale(1.08);
}

.footer__contact-logo {
    transition: transform 0.15s;
    margin: 14px 0 14px 0;
}

.footer__contact-logo > img {
    width: var(--footer-img-size);
    height: var(--footer-img-size);
}

.footer__contact-logo:hover {
    transform: scale(1.12)
}

.footer__credits {
    font-size: 0.8em;
    text-align: center;
}