* {
    box-sizing: border-box;
}

.block {
    background: #c0baba8e;
    width: 1000px;
    height: 500px;
    overflow: auto;
    border-radius: 20px 0 0 20px;
    border: 1px solid rgb(7, 7, 7);
}

.element {
    display: inline-block;
    background: #a8793b80;
    width: 200px;
    height: 200px;
    padding: 15px;
    margin: 5px;
    box-shadow: inset -2px -2px 3px #24171760, inset 2px 2px 3px #24171760;
    border-radius: 20px;
}

.title {
    margin: 10px 0;
}