.container {
    background-color: #aa0e0e;
    width: 1000px;
    height: 600px;
    margin: 40px auto;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
}

.box {
    width: 45%;
    height: 100px;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-sizing: border-box;
    border: 3px;
    border-style: solid;
    border-color: black;

}

.item1 {
    background-color: #ee0b0b;
}

.item2 {
    background-color: #f08213;;
}

.item3 {
    background-color: #f0de13;}

.item4 {
    background-color: #42aa0e;
}