@media (max-width: 1400px){
    #songFilter {
        font-size: 18px;
    }
    .songs {
        gap: 60px;
    }
    .row {
        font-size: 18px;
    }
    .genre {
        font-size: 26px;
    }
    .more-songs {
        font-size: 18px;
    }
}

@media (max-width: 1175px){
    .songs {
        width: 600px;
        gap: 0px;
        justify-content:left;
    }
    .polka .song-name {
        width: 300px;
    }
}

@media (max-width: 600px){
    #songFilter {
        width: 300px;
    }
    .songs {
        width: 95%;
        justify-content: left;
    }
    .song-name {
        width: 140px;
        margin-right: 20px;
    }
    .polka .song-name {
        width: 140px;
    }
    .row, .more-songs {
        font-size: 16px;
    }
    .genre {
        font-size: 24px;
    }
}