
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
완강하고 받은 랜덤 코드 적용을 했는데, 다른건 다 적용이 되는데 랜덤 배경이 적용이 안됩니다.
코드 어디가 잘못됐는지 모르겠어요 ㅠㅠ
보고 계신 화면 전체를

캡처해 주시면

, 튜터님들이 빠르게 상황을 이해할 수 있어요.
작성한 코드 및 에러 메세지
<!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"><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script><link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.0/font/bootstrap-icons.css"><script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"crossorigin="anonymous"></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(images/01.jpg);
background-position: center;
color:#fff;
}
.time{
font-size:120px;
font-weight: bold;
}
.greeting{
font-size: 34px;
}
.todo{
font-size: 60px;
}
.author{
font-size: 30px;
font-style: italic;
}
.content{
font-size: 16px;
}
.main{
width:100vw;
height:80vh;
display:flex;
flex-direction: column;
align-items: center;
justify-content:center;
}
.quote{
width:100vw;
height:20vh;
display:flex;
flex-direction: column;
align-items: center;
justify-content:center;
}
</style>
<script src="index.js"></script>
</head>
<body><div class="main"><div id="currentTime" class="time">12:00</div><div class="greeting">Hello, dawnkim_</div><div class="todo">cording study</div></div>
<div class="quote"><div id="quoteAuthor" class="author">kim</div><div id="quoteContent" class="content">
To all dreamers out there, don't ever let the world's negativity disenchant you or your split.<br>
If your surround yourself with love and with right people, Anything is possible.
</div></div>
</body>
</html>
