
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
이미지가 안떠서 직접 저장했는데 그래도 안뜨네요 ㅠㅠㅠ

작성한 코드 및 에러 메세지
<!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>
.title {
color: white;
background-color: black;
font-size: 24px;
padding: 4px 14px;
border-radius: 8px;
font-weight: 600;
}
.bg {
width: 360px;
background-image : url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bg-grid.png");
}
.msg{
font-weight: bold;
}
.bucket {
width: 160;
height: 160;
}
.imeg1{
background-image: url("/bucket-red.png");
background-size: cover;
background-position: center;
}
.imeg2 {
background-image: url("/bucket-lightred.png");
background-size: cover;
background-position: center;
}
@import url('https://fonts.googleapis.com/css2?family=Hahmlet:wght@400;500;600;700&display=swap');
* {
font-family: 'Hahmlet', serif;
}
<link rel="stylesheet" type="text/css" href="https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/sparta-bucket2.css">
</style>
</head>
<body class="bg">
<h1 class="title">2023 신년계획</h1>
<p class="msg">!나는 할수있다!</p>
<div class="row">
<div class="bucket imeg1">내일배움단 완주하기</div>
<div class="bucket imeg2">영어공부 마스터 하기</div>
<div class="bucket imeg2">프랑스어 공부하기</div>
<div class="bucket imeg1">좋은남자 만나서 결혼하기</div>
<div class="bucket imeg1">성경 1독하기</div>
<div class="bucket imeg2">취업하기</div>
</div>
</body>
</html>
