footer {
    background-color: #2f2f2f;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
footer .top-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (min-width: 1200px) {
    footer {
        flex-direction: row;
    }
}