.cardlist{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;

    width: 100%;
    height: auto;
    margin-top: 10px;
}

.card{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;

    min-height: 300px;
    height: auto;
    width: 220px;
    margin: 5px;
    border-radius: 10px;

    background-color: rgba(31, 31, 31, 0.801);
    border: 5px solid rgb(26, 26, 26);
}
.card p{
    font-weight: bold;
}

.items{
    height: 100px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
}
.footer{
    margin-top: 50px;
}

h3.info{
    color: rgb(209, 209, 0);
}