
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
하늘색 동그라미 (img5-t4) 사이즈를 작게 하고 싶은데, 크기 변경이 안돼요...

<!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 Bucket List</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Hahmlet:wght@400;500;600;700&family=Stylish&display=swap');
* {
font-family: 'Hahmlet', serif;
}
.title {
color: yellow;
/*background-color: tomato;*/
font-size: 30px;
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;
font-size: 18px;
}
.bucket1 {
font-size: 20px;
width: 160px;
height: 160px;
background-size: cover;
background-position: center;
}
.bucket2 {
font-size: 23px;
background-size: cover;
}
</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-t4 center">
<h1 class="title">2023 Bucket List</h1>
<p class="msg">Dreams Come True</p>
<div class="row flex-row wrap">
<div class="bucket1 img4-t4 center">미라클 모닝 실천하기</div>
<div class="bucket2 img5-t4 center">토익 900점 달성</div>
<div class="bucket1 img1-t4 center">책 읽기</div>
<div class="bucket1 img3-t4 center">야구 직관</div>
<div class="bucket1 img2-t4 center">다이어트</div>
</div>
</body>
</html>
