* {
    box-sizing:border-box;
}

.items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-family: 'Open Sans', sans-serif;
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
}

.item {
    flex: 1 0 4px;
    margin-right: 12px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px -2px black;
}

.item-name {
    background-color: #44b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    font-size: 1.25rem;
    color: white; 
}

.add-item {
    background-color: #1a1a8b;
    font-size: 16px;
    padding: 6px;
    border-radius: 50%;
}

.fact-line {
    background-color: #44b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    font-size: 1rem;
    color: white;
}

.item-description {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 0.5rem;
    font-size: 1rem; 
}

@media (max-width: 768px) {
    .item > h3 {
        font-size: 1.5rem;
    }
    .item > p {
        font-size: 1.5rem;
    }
    .item {
        flex-basis: calc(100%-12px);
        margin-right: 12px;
    }
}