Хомяк
Знаток
(252)
1 месяц назад
Надеюсь такой ответ подойдёт.
<!DOCTYPE html>
<html>
<head>
<title>Cool Box</title>
<style>
.cool-box {
width: 200px;
height: 200px;
margin: 50px auto;
position: relative;
background-color: red;
background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
color: white;
font-family: sans-serif;
border-radius: 8px;
border: 1px solid darkred;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
inset -2px -2px 4px rgba(0, 0, 0, 0.2),
inset 2px 2px 4px rgba(255, 255, 255, 0.3);
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding: 20px;
text-shadow: 1px 1px 2px black;
font-size: 1.125rem;
}
</style>
</head>
<body>
<div class="cool-box">
This is a cool box
</div>
</body>
</html>