.list {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-around;
    justify-items: center;
    row-gap: 3vh;
    margin: 0;
}

.listtitle {
    text-align: center;
    margin: 0%;
    align-self: center;
    margin-top: 2vh;
}

/* Mobile */
@media (max-width: 800px) {
    .list {
        grid-template-columns: auto;
        justify-items: center;
        justify-content: normal;
    }
}