.widget#clock {
    width: 260px;
}

#digital-clock {
    font-size: 25px;
    font-weight: bold;
    color: var(--text-color, white);
    margin-bottom: 10px;
    justify-self: center;
    margin-top: 10px;
}

.analog-clock {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#clock-face {
    width: 80%;
    height: 80%;
    aspect-ratio: 1/1;
}

#clock-face circle,
#clock-face line {
    stroke: rgb(var(--text-color));
}

#clock-face #second-hand {
    stroke: rgb(var(--bar-color))
}
