
.calendar {
    margin-top: 20px;
    margin-right: 6%;
    display: flex;
    justify-content: end;
    /* border: 2px solid black; */
}

.date-style {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-right: 10px;
}

.digital-clock {
    width: 400px;
    text-align: center;
    margin: 40px auto 0;
    font-size: 46px;
    font-weight: 900;
    color: blue;
    /* background-color: #274d08; */
    /* border: 2px solid black; */
}


.clock {
    position: relative;
    max-width: 600px;
    height: 600px;
    margin: 0 auto;
    
    /* background-image: url("https://i.ibb.co/dBGxSK1/hiclipart-com-3.png"); */
    background-image: url('../img/clock.png');
    background-color: rgba(0, 0, 0, 0.0);
    background-size: cover;
    /* border: 2px solid black; */
    border-radius: 25%;
    
}

.clock-arrow {
    position: absolute;
    transform-origin: bottom;
    /* transform-origin: left bottom; */
    transform: translateX(-50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    /* background-color: #000; */
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #000;
}



.clock-hours-arrow {
    width: 12px;
    height: 24%;
    bottom: 50%;
    left: 50%;
    background-color: black;
}


.clock-minutes-arrow {
    width: 8px;
    height: 33%;
    bottom: 50%;
    left: 50%;
    z-index: 2;
    background-color: green;
}


.clock-seconds-arrow {
    width: 4px;
    height: 40%;
    bottom: 50%;
    left: 50%;
    z-index: 3;
    background-color: yellow;
    /* transform: rotate(6deg); */
}