@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap");
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
}
body
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background: #091921;
}
.clock
{
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #091921 url(clock.png);
    background-size: cover;
    border-radius: 50%;
    border: 4px solid #091921;
    box-shadow: 0 -15px 15px rgba(255,255,255,0.05),
                0 20px 20px rgba(0,0,0,0.3),
                inset 0 -15px 15px rgba(255,255,255,0.05),
                inset 0 20px 20px rgba(0,0,0,0.3);
}
.clock::before
{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #fff;
    z-index: 100000;
    border-radius: 50%;
}
.hour,
.min,
.sec
{
    position: absolute;
}
.hour, .hr
{
    width: 160px;
    height: 160px;
}
.min, .mn
{
    width: 190px;
    height: 190px;
}
.sec, .sc
{
    width: 230px;
    height: 230px;
}
.hr,.mn,.sc
{
    display: flex;
    justify-content: center;
    position: absolute;
    border-radius: 50%;
}
.hr::before
{
    content: '';
    position: absolute;
    width: 8px;
    height: 80px;
    background: #ff105e;
    z-index: 10;
    border-radius: 6px 6px 0 0;
}
.mn::before
{
    content: '';
    position: absolute;
    width: 4px;
    height: 90px;
    background: #ffffff;
    z-index: 11;
    border-radius: 6px 6px 0 0;
}
.sc::before
{
    content: '';
    position: absolute;
    width: 2px;
    height: 150px;
    background: #008eff;
    z-index: 12;
    border-radius: 6px 6px 0 0;
}
h1, h1, h3, h4, h5, h6 {
 font-weight: 700 !important;
}

h1 {
    font-size: 8em;
    color: #192931;
    letter-spacing: 5px;
    cursor: pointer;
}

h1 span {
    transition: 0.5s;
}

h1:hover span:nth-child(1):after {
    content: "'";

}

h1:hover span:nth-child(3) {
    margin-left: 40px;
} 

h1:hover span {
    color: #fff;
    text-shadow:    0 0 10px #fff,
                    0 0 20px #fff,
                    0 0 40px #fff,
                    0 0 80px #fff,
                    0 0 120px #fff,
                    0 0 160px #fff;
}

.row {
    position: absolute;
    bottom: 100px;
}