footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 200px 100px 200px;
    background: var(--bg-lighter);
    align-items: center;
}

footer p {
    color: var(--storyzy-light-color);
}

footer a {
    color: var(--storyzy-main-color);
    cursor: pointer;
    transition: 0.2s;
}

footer a:hover {
    text-decoration: underline;
}

.footer-logo {
    max-width: 140px;
}

.socials {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a img{
    width: 30px;
    height: auto;
    align-items: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-container p{
    text-align: center;
}

.contact-icon{
    width: 30px;
    height: auto;
}

.contact-icons-container {
    display: flex;
    gap: 15px;
    padding-left: 15px;
}

@media screen and (max-width: 900px) {
    footer {
        align-items: center;
        padding: 50px !important;
    }

    footer p {
        text-align: center;
    }

    .socials p {
        display: block;
    }

    .socials {
        flex-direction: column;
        align-items: center;
        width: 50%;
    }
}

@media screen and (max-width: 1500px) {
    footer {
        padding: 50px 100px;
    }
}


@media screen and (max-width: 1200px) {
    footer {
        align-items: center;
    }

    footer p {
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .socials {
        margin: 20px 0;
        flex-direction: column;
        align-items: center;
        width: 50%;
    }

    .social-links {
        margin-top: 20px;
        display: flex;
    }
}