
프로필 제목에 그림자 살짝 넣고 싶은데 어떻게 하면 좋을까요?

작성한 코드 및 에러 메세지
<style>
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
* {
font-family: "Pretendard",serif;
}
body {
background-color: #fbb3b8;
}
.profile {
width: 100px;
height: 100px;
border-radius: 100%;
border: 2px solid white;
background-image: url('담이.png');
background-position: center;
background-size: cover;
}
.main {
color: white;
font-size: 20px;
margin-top: 30px;
margin-bottom: 10px;
}
.sub {
color: white;
font-size: 14px;
margin-top: 0px;
margin-bottom: 30px;
}
.wrap {
width: 300px;
margin: 30px auto 0px auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.wrap > a {
width: 300px;
height: 50px;
background-color: rgb(255, 255, 255);
border-radius: 8px;
margin-bottom: 10px;
font-size: 14px;
font-weight: bold;
color: #ff3e3e;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-decoration: none;
box-shadow: 3px 3px 5px 0px #bcddfc;
}
.wrap > a:hover {
background-color: rgb(255, 255, 255);
}
</style>
</head>
<body>
<div class="wrap">
<div class="profile"></div>
<h2 class="main">나나네</h2>
<p class="sub">나나상점입니다 </p>
