body {
    background-color: plum;
}

.box {
    width: 45%;
    height: 100px;
    border-radius: 20px;
    text-align: center;
    padding: 40px;
    border: 2px solid lightblue;
    box-sizing: border-box;

}

.item1 {
    background-color: antiquewhite;
    height: auto;
    text-align: center;

}

.item2 {
    background-color: lightcyan;
    height: auto;
    text-align: center;

}

.item3 {
    background-color: lightgreen;
    height: auto;
    text-align: center;
}

.item4 {
    background-color: lightcoral;
    height: auto;
    text-align: center;
}

.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;

}