
테마를 2번 파란색으로 하고 싶어서 -t2 를 입력했는데 화면이 이렇게 뜹니다ㅜㅜ

작성한 코드 및 에러 메세지
<!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;
}
.title {
color: white;
background-color: tomato;
font-size: 24px;
padding: 4px 14px;
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;
}
.bucket {
width: 160px;
height: 160px;
}
.image1 {
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-red.png");
background-size: cover;
background-position: center;
}
.image2 {
background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-lightred.png");
background-size: cover;
background-position: center;
}
.mas{
color:black;
}
</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-t2 center">
<h1 class="title-t2">2023 신년계획</h1>
<p class="mas">갓생을 살아보자</p>
<div class="row flex-row wrap">
<div class="bucket image1-t2 center">49kg</div>
<div class="bucket image2-t2 center">코딩 배우기</div>
<div class="bucket image2-t2 center">컴활 자격증</div>
<div class="bucket image1-t2 center">프론트엔드&백엔드</div>
<div class="bucket image1-t2 center">영어 회화</div>
<div class="bucket image2-t2 center">복권 당첨</div>
</div>
</body>
</html>
