.app__footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    background: var(--color-60);
    
}

.app__footer p {
    margin: 0;
}
.app__footer-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.app__footer-head h3 {
    font-size: 24px;
    color: var(--color-textHeading);
}

.app__footer-head p {
    width: 40%;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-text);
}

.app__footer-head-links {
    display: flex;
    justify-content: flex-end;
}

.app__footer-head-links-icon {
    width: 50px;
    height: 30px;
    font-size: 30px;
    padding: 0 0.5rem;
    color: var(--color-text);
    cursor: pointer;
}

.app__footer-head-links-icon:hover{
    color: var(--color-10);
}

.app__footer-head-links-icon:active {
    color: var(--color-30);
}

.app__footer-break {
    border: 1px solid var(--color-text);
    margin: 1rem 0;
    width: 80%;
}

.app__footer-copyright {
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-text);
}

@media screen and (max-width: 1250px) {
    .app__footer {
        padding: 1rem 2rem;
    }

    .app__footer-head-links {
        width: 300px;
        align-items: flex-end;
    }
}

@media screen and (max-width: 950px) {
    .app__footer {
        padding: 1rem 2rem;
    }
    .app__footer-head h3 {
        font-size: 20px;
    }
    
    .app__footer-head p {
        width: 60%;
        font-size: 14px;
    }

    .app__footer-head-links-icon {
        width: 50px;
        height: 30px;
    }

    .app__footer-copyright {
        font-size: 14px;
    }

}

@media screen and (max-width: 550px) {
    .app__footer-head-links-icon {
        width: 40px;
        height: 25px;
        font-size: 25px;

    }

    .app__footer-head-links {
        width: 150px;
        align-items: flex-end;
    }

    .app__footer-head p {
        width: 100%;
    }
}

@media screen and (max-width: 350px) {
    .app__footer-copyright {
        text-align: center;
        font-size: 12px;
    }

    .app__footer-head-left-info {
        display: none;
    }

    .app__footer-head-links-icon {
        height: 20px;
        font-size: 20px;

    }
    
    .app__footer-head {
        flex-direction: column;
        justify-content: space-around;
        align-items: start;
    }
    
    .app__footer-head-left {
        text-align: center;
        margin: 0 0 1rem 0;
    }

    .app__footer-head-links {
        margin: 0.5rem 0;
        justify-content: center;
    }
}