<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Controller Effect</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="box">
NEUMORPHISM BOX
</div>
</div>
<script src="app.js"></script>
</body>
</html>
* {
margin: 0;
padding: 0;
}
body {
background: #161927;
}
.container {
width: 600px;
height: 600px;
background: #e9f3f0;
margin: 50px auto;
display: flex;
justify-content: center;
align-items: center;
}
.box {
width: 250px;
height: 250px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 40px;
border-right: solid 1px #dbe4e2;
border-bottom: solid 1px #dbe4e2;
background: #e9f3f0;
box-shadow: 7px 7px 14px #dbe4e2, -7px -7px 14px #f7fffe;
}