@import url("https://fonts.googleapis.com/css?family=Share+Tech+Mono");

#clock,
.time {
    position: relative;
    display: flex;
    flex-direction: row;
}

#clock {
    width: 80px;
    top: 25%;
    margin: 0 auto;
}

.time.minutes {
    left: 32px;
}

.time.seconds {
    left: 64px;
}

.display {
    position: absolute;
    top: auto;
    bottom: -32px;
    left: 14px;
    letter-spacing: 3.2rem;
}

.bit {
    width: 28px;
    height: 28px;
    margin: 8px;
    background: #0f0;
    box-shadow: 0 0 16px #33ccff;
    transition: all 0.5s ease-out;
}

.bit.blank {
    background: black;
    box-shadow: none;
}

@media only screen and (min-width: 320px) and (max-device-width: 768px) and (orientation: landscape) {
    #clock {
        top: 15%;
    }
}

/* Clock Styling */
.clock {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #000;
    border: 3px solid #00e6c8;
    box-shadow: 0 0 15px rgba(0, 230, 200, 0.5);
    margin: 0 auto;
}

.hour-hand,
.minute-hand,
.second-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: left center;
}

.hour-hand {
    width: 35%;
    height: 4px;
    background-color: #00e6c8;
    transform: rotate(0deg);
    z-index: 2;
}

.minute-hand {
    width: 45%;
    height: 3px;
    background-color: #00e6c8;
    transform: rotate(0deg);
    z-index: 3;
}

.second-hand {
    width: 45%;
    height: 2px;
    background-color: #ff3333;
    transform: rotate(0deg);
    z-index: 4;
}

.center-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: #00e6c8;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.hour-marks {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hour-mark {
    position: absolute;
    width: 100%;
    height: 100%;
}

.mark-inner {
    position: absolute;
    top: 10%;
    left: 49%;
    width: 2px;
    height: 10px;
    background-color: #00e6c8;
}

.date-display {
    text-align: center;
    margin-top: 15px;
    color: #00e6c8;
    font-weight: bold;
}

.users-online {
    text-align: center;
    margin-top: 10px;
    color: #e0e0e0;
    font-size: 0.9rem;
}
