<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100px;
box-sizing: border-box;
margin: 300px auto;
background-color: #acbaca;
display: flex;
justify-content: center;
align-items: center;
}
div {
width: 300px;
height: 300px;
background-color: #c9d5e0;
border-radius: 50px;
box-shadow: 30px 30px 30px -10px rgba(0, 0, 0, 0.15),
inset 15px 15px 10px rgba(255, 255, 255, 0.75),
-15px 15px 35px rgba(255, 255, 255, 0.55),
inset -1px -1px 10px rgba(0, 0, 0, 0.2)
}
</style>
</body>
<div></div>
</html>
08-15
220

11-30
751

02-14
378
