
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
영상처럼 포스트잇이 나오는게 아니라 그냥 긴 막대기밖에 안나옵니다

<!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>2023년 버킷리스트</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Hahmlet:wght@400;500;600;700&display=swap');
* {
font-family: 'Hahmlet', serif;
}
.img1 {
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-red.png");
background-size: cover;
background-position: center;
}
.img2 {
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-lightred.png");
background-size: cover;
background-position: center;
}
.title {
color: white;
background-color: tomato;
font-size: 24px;
padding: 4px 16px;
border-radius: 8px;
}
.bg {
width: 360px;
background-image : url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bg-grid.png");
}
.msg {
font-weight: bold;
color: black;
}
.bucket {
width: 160px;
height: 160px;
}
</style>
<link rel="stylesheet" type="text/css" href="https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/sparta-bucket2.css">
</head>
<body class="bg">
<h1 class="title">2023 신년 버킷리스트</h1>
<p class="msg">올해에 도전해보자!</p>
<div class="row">
<p class="buket img1">앱으로 수익 창출하기</p>
<p class="buket img1">수학, 과학 1등급</p>
<p class="buket img2">친구들과 타지역으로 놀러가기</p>
<p class="buket img2">-추가바람-</p>
<p class="buket img1">-추가바람-</p>
<p class="buket img1">-추가바람-</p>
<p class="buket img2">-추가바람-</p>
</div>
</body>
</html>
