footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: black;
    padding: 10px 20px;
    font-family: "Sora", sans-serif;
    text-align: right;
    width: 100%;
}

footer p {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 0;
    padding: 10px 0;
}

.social-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 15px;
    padding: 10px 0;
}
.social-links a {
    display: inline-block;
}
.social-links img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

@media (max-width: 600px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .social-links img{
        width: 36px;
        height: 36px;
    }
}
