.container {
    display: flex;
    flex-wrap: wrap; 
    gap: 10px;        
    justify-content: space-between;
}

.item {
    background-color: red;
    color: white;
    padding: 20px;
    text-align: center;
    flex-basis: 200px;  
    flex-grow: 1;        
    flex-shrink: 1;      
    border-radius: 8px;
    font-size: 18px;
}