Shadow test
HTML
<div class="card">
</div>
CSS
html, body {
margin: 0;
padding: 0;
height: 100%;
}
body {
display: flex;
align-items: center;
justify-content: center;
}
.card {
width: 300px;
height: 150px;
background: #fff;
box-shadow: 0 12px 40px 0 rgb(0 0 0 / 15%);
}