footer {
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: #1C2641;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    min-height: 400px;
}

footer>div {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-around;
}

footer span {
    font-size: 20px;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer li {
    font-size: 16px;
    font-weight: 200;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer img {
    width: 30px;
}

@media(max-width: 580px) {
    footer {
        padding: 2rem;
    }

    footer>div {
        gap: 50px;
        flex-direction: column;
        align-items: start;
        justify-content: space-around;
    }

    footer span {
        font-size: 20px;
    }

    footer ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    footer li {
        font-size: 16px;
        font-weight: 200;
    }

    .column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    footer a {
        color: white;
        text-decoration: none;
    }

    footer img {
        width: 30px;
    }
}