footer {
    background-color: var(--color-footer-background);
    color: var(--color-footer-font);
    padding: 20px 0px 20px 0px;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 1000;

    display: flex; 
    justify-content: center;
    align-items: center; 
    flex-wrap: wrap; 
    text-align: center;
}


.support-us {
    position: absolute;
    right: 20px; 
    bottom: 15px;
    
    background: var(--color-support-us-btn-background);
    color: black;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 5px;
    z-index: 10; 
}

.support-us:hover{
    background: var(--color-support-us-btn-background-hover);
}


.email-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}


@media screen and (max-width: 700px) {
    footer {

        display: none;
    }

    .support-us {
        position: static;
        margin-top: 10px; 
    }
}

