*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to right, #025db9, #061084); 
}

 h1 {

    text-align: center;
    color: aqua;
    padding:4vh 0px;
    font-size: 52px;
}

.body{
    display: flex;
    justify-content: center;
    align-items: center; 
    min-height: 70vh;
}

.container{
    position: relative;
}

.clock {
    height: 300px;
    width: 300px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(255, 255, 255, 0.1)30%,rgba(33,33,33,0.8)80%);
    box-shadow: 0px 0px 20px rgba(0,0,0,0.9);
    border: 2px solid blue;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.clock span  {
    position: absolute;
    transform: rotate(calc(30deg * var(--i)));
    inset: 12px;
    text-align: center;
}

.clock span b{
    color: aliceblue;
    transform: rotate(calc(-30deg * var(--i)));
    display: inline-block;
    font-size: large;
}


.clock::before{
    content: '';
    position: absolute;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 2;
}

.hands{
    position: relative;
    top: 149px;
    display: flex;
    justify-content:center;
    align-items: flex-end;
}

.point{
    height: 5px;
    width: 5px;
    border-radius: 5px;
    align-items: center;
    box-shadow: 0px 0px 8px var(--color) ;
    background-color: var(--color);
}
.hands i{
    position: absolute;
    background-color: var(--color);
    width: 4px;
    height: var(--height);
    border-radius: 8px;
}

.box{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 300px;
    border-radius: 20px;
    margin-top: 2.3rem;
    box-shadow: 0px 0px 16px rgb(143, 120, 247);
    background-color: #061084;
    font-size: 50px;
    color: aliceblue;
}

.mark {
    display: flex;
    justify-content: end;
    align-items: end;
    padding-right: 6%;
    color: #fb8600;
}

a img {
    width: 50px;
    height: 50px;
    margin-left: 10px;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: #061084;
    color: aliceblue;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

#copyright {
    padding: 10px;
    font-size: 15px;
    font-weight: normal;
    color: #fb8600;
    text-align: center;
    background-color: #061084;
}
