*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;
    /* background: linear-gradient(
        to bottom,
     #2987e4 50%
      #16191e 50%  
    ); */
background: #0e365f;
}

.clock{
    background-color: hsl(0, 22%, 96%);
    height: 320px;
    width: 320px;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 15px solid #242931;
    box-sizing: content-box;
    box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.2);
    inset: 0 0 30px rgba(0,0,0,0.4);
}

.clock img{
    height: 300px;
    width: 400px;
    margin-left: -40px;
    margin-top: 10px;
    position: relative;
}

.hand{
    position: absolute;
    background-color: black;
    margin: auto;
    left: 0;
    right: 0;
    border-radius: 5px;
    transform-origin: bottom;
}

.hour{
    height: 70px;
    width: 10px;
    top: 90px;
}

.minute{
    height: 90px;
    width: 5px;
    top: 70px;
}


.seconds{
    height: 100px;
    width: 3px;
    top: 60px;
    background-color: #2987e4;
}