.clock{
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    background-image: url("../images/clock.png");
    background-size: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05), 0 7px 7px rgba(0,0,0,0.1), 0 0 0 4px rgba(255,255,255,0.1);
    margin: 19% auto 0;
}

.clock::before{
    content: '';
    position: absolute;
    width:15px;
    height: 15px;
    background: #848484;
    border:2px solid #fff;
    z-index: 100000;
    border-radius:50%;
}

.hour, .min, .sec{
    position: absolute;
}

.hour, .hr{
    width: 120px;
    height: 123px;
}

.min, .mn{
    width: 80px;
    height: 128px;
}

.sec, .sc{
    width: 10px;
    height: 10px;
}

.hr, .mn, .sc{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 50%;
}

.hr::before{
    content: '';
    position: absolute;
    width:8px;
    height: 80px;
    background: #848484;
    z-index: 10;
    top:0;
}

.mn::before{
    content: '';
    position: absolute;
    width:4px;
    height: 90px;
    background: #d6d6d6;
    z-index: 11;
    top:0;
}

.sc::before{
    content: '';
    position: absolute;
    width:2px;
    height: 52px;
    background: #f3c6bd;
    z-index: 12;
    top:0;
}

#weekPrint{
    padding: 9% 5% 7% 7%;
    text-align: center;
    font-size: 1rem;
    color: #f3c6bd;
}
