.columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1em;
    text-align: center;
    justify-content: center;
    column-gap: 1em;
    margin-bottom: 1em;
}

.column {
    background-color: white;
    border-radius: .5em;
    color: #000000;
    box-shadow: 0px 0px 5px black;
    padding: 1em;

}

@media screen and (max-width: 480px) {
    .columns {
        all: unset;
        text-align: center;
        padding: 1em;
    }

    .column {
        background-color: white;
        border-radius: .5em;
        color: #000000;
        box-shadow: 0px 0px 5px black;
        padding: 1em;
        margin-bottom: 1em;

    }

}