/* CONTAINER STYLES */
.container {
    width: 1000px;
    height: 600px;
    background-color: #d6f0ff; /* hexadecimal color */
    margin: 40px auto;
    border-radius: 40px;

    /* FLEXBOX */
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
}


/* SHARED BOX STYLES */
.box {
    width: 45%;
    height: 100px;
    border: 3px solid #333;
    border-radius: 20px;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
    font-size: 24px;
}


/* INDIVIDUAL ITEM COLORS */
.item1 {
    background-color: #ffadad;
}

.item2 {
    background-color: #ffd6a5;
}

.item3 {
    background-color: #caffbf;
}

.item4 {
    background-color: #a0c4ff;
}
