
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
main과 동일하게 quote에도 가운데 정렬 코드를 입력했는데
quote 부분은 가운데 정렬이 되지 않아요..ㅠㅠ
무엇이 문제일까요?

<!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">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<title>나만의 동기부여 홈화면 만들기</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
* {
font-family: 'Poppins', sans-serif;
}
body {
background-image: url("https://images.unsplash.com/photo-1666065988253-3ad95ca4404f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80");
background-position: center;
background-size: cover;
color: white;
}
.time{
font-size: 80px;
font-weight: bold;
}
.greeting{
font-size: 50px;
}
.todo{
font-size: 30px;
}
.author{
font-size: 25px;
font-style: italic;
}
.main{
width: 100vw;
height: 80vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.quote{
width: 100px;
height: 20vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
</style>
<script>
</script>
</head>
<body>
<div class="main">
<div class="time">12:00</div>
<div class="greeting">Hello, yungsang!</div>
<div class="todo">주 3회 운동하기</div>
</div>
<div class="quote">
<div class="author">- 명언의 저자 -</div>
<div class="content">" 명언의 내용 "</div>
</div>
</body>
</html>
