
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
msg가 center로 안가요 폰트 문제인지는 모르겠어요
강의랑 다른 폰트를 사용했는데 msg가 center로 이동하지 않습니다,

<!-- html:5 -->
<!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=Dongle:wght@400;700&display=swap');
*{
font-family: 'Dongle', sans-serif;
}
.title {
color: white;
background-color: coral;
font-size: 40px;
padding: 4px 14px;
/* 여백 */
border-radius: 8px;
/* 깎기 */
}
.bg {
width: 450px;
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bg-grid.png");
}
.msg {
font-weight: bold;
}
.bucket {
width: 160px;
height: 160px;
}
.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;
}
</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 center">
<h1 class="title">2023년도 뿐이랑 함께하는 버킷리스트</h1>
<pc lass="msg center"> 올해도 뿐이와 함께♡</p>
<div class="row flex-row wrap"> <!-- 묶음처리 -->
<div class="bucket img1 center">제주도 놀러가기</div>
<div class="bucket img2 center">드라이브 가기</div>
<div class="bucket img1 center">눈사람 만들기</div>
<div class="bucket img2 center">캠핑가기 (카라반)</div>
<div class="bucket img1 center">바다 놀러가기</div>
<div class="bucket img2 center">2024년에도 함꼐하기</div>
</div>
</body>
</html>
