* {
    padding: 0;
    margin: 0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
}

.item {
    display: flex;
    flex-grow: 1;
    margin: 10px;
    height: 30vh;
    min-height: 200px;
    flex-basis: 320px;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    font-weight: bold;
    background-color: rgb(26, 124, 108);
    color: #333;
    border-radius: 20px;
    transition: all .2s linear;
}