@import url(../../../Styles/colors.css);
footer {
    position: relative;
    width: 80%;
    height: 100px;
    
    background-color: var(--medium-purple);
    color: var(--white);
    font-family: 'Poppins', sans-serif;

    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-left: 20%;

    margin-top: 100px;
}

footer > p {
    margin-left: 20px;
    color: var(--light-grey);
}

footer > .socialMedia > a {
    text-decoration: none;
    margin-left: 30px;
}

.icons{
    width: 50px;
    height: 35px;
}

@media screen and (max-width: 1024px){
    footer{
        width: 80%;
        margin-left: 20%;
        height: 100px;
    }

    footer > p {
        font-size: 12px;
        margin-left: 20px;
        color: var(--light-grey);
    }

    .icons{
        width: 20px;
        height: 35px;
    }
} 

@media screen and (max-width: 768px) {
        footer{
            width: 100%;
            margin-left: 0;
        }

        footer > .socialMedia {
            margin: auto;
        }

        footer > p {
            font-size: 10px;
            margin: auto;
            text-align: center;
        }

        .icons{
            width: 20px;
        }
    }

    @media screen and (max-width: 425px){
        
    }


