.container {
    width: 1000px;
    height: 600px;
    background-color: #6082B6;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    display: flex;
    justify-content:center;
    flex-wrap:wrap;
    flex-direction: column;
    align-items: flex-start;
    align-content: center;
}

.box {
    width: 45%;
    border-width: 2px;
    border-style: dotted;
    border-color: cornsilk;
    height: 100px;
    border-radius: 20px;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
}

.item1 {
    color: #829FAB;
}

.item2 {
    color: #345766;
}

.item3 {
    color: #162A33;
}

.item4 {
    color: #95F5F3;
}