:root {
    --colorAFMBlue: #00A1EC;
    --colorAFMOrange: #FFA720;
    --footerBackground: #1e1e1e;
    --colorTextFooter: #c0c0c0;
    --colorNoteFooter: #808080;
    --shadow: 10px 10px 10px rgba(0, 0, 0, 0.01);
}

.footer{
    width: 100%;
    margin: 0ch auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    z-index: 5;
    padding: 1em 1em 4em 1em;
}

.footerLogo{
    display: flex;
    margin: 2em auto;
    width: 10em;
    padding: 2em;
}

.footerSocials{
    display: flex;
    justify-content: center;
    padding-bottom: 2em; 
}

.footerSocials ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1em;
}

.socialButton {
    background: none;
    border: 0px;
    color: var(--colorText);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.socialButton img {
    height: 2em;
}

.socialButton:hover{
    cursor: pointer;
    transform: translateY(-3px);
}

.footerNote #legalNote{
    color: var(--colorNoteFooter);
    font-size: 10px;
}