body{
    display:flex;
    justify-content:center;
    align-items: center;
    height:100vh;
    background-image:url(newsletter.png);
    background-repeat:no-repeat;
    background-size: 500px;
    background-position:center;
}

.clock{
    height:300px;
    width:300px;
    border-radius:150px;
    border:solid 5px rgb(252,255,55);
    position: absolute;
}

#seconds-hand{
position:absolute;
height: 130px;
width:2px;
background-color:rgb(189, 25, 52);
right:149px;
bottom: 149px;
opacity:50%;
transform-origin:0% 100%;
}

#minutes-hand{
    height: 100px;
    width: 2px;
    background-color:rgb(253,120,227);
    position: absolute;
    right: 149px;
    bottom: 149px;
    transform-origin:0% 100%;
}

#hours-hand{
    height: 80px;
    width:2px;
    background-color:rgb(205,112,255);
    position: absolute;
    right: 148px;
    bottom: 148px;
    transform-origin:0% 100%;
}

#centre{
height: 10px;
width:10px;
border-radius: 5px;
background-color:rgb(252,255,55);
position: absolute;
left: 145px;
bottom: 145px;
}
