

* {
    box-sizing: border-box;
}

.main{
    /* чтобы не было схлопывания */
    overflow: auto;
    height: 700px;
    width: 100%;
    background: #8E989E;
    border-radius: 40px 0 0 40px
}

div.block{
    display: inline-block;
    margin: 50px;
    border-radius: 40px;
    height: 250px;
    width: 300px;
    background-color: rgba(236, 143, 21, 0.507);
    box-shadow: 0 0 10px black;
    padding: 17px;
}

h2{
    align-self: center;
}