/* Für alle Geräte */

h2 {text-align: center;}

#linklist {
    display: flex;
    padding: 0;
}

#linklist li {
    align-items: center;
    background-color: rgb(100,100,100);
    border: 1px solid #F5EAEA;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 160px;
    margin: 15px;
    width: 100px;
}

#linklist img {
    width: 80%;
    height: auto;
}

#linklist p {
    margin: 0;
}

#linklist a {
    color: #F5EAEA;
    text-align: center;
    width: 100%;
    /*padding-top: 1.5em;*/
}


/* Für grössere Geräte */
@media only screen and (min-width: 321px) {
    #linklist {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Für Handys */
@media only screen and (max-width: 320px) {
    #linklist {
        flex-direction: column;
        align-items: center;
    }
}