*{
    margin:0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}
body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background:azure;
}
.Body{
    align-content: center;
    position: relative;
    background:darkslategrey;
    min-height: 450px;
    border-radius: 15px;
    box-shadow: 5px 25px 45px rgba(0, 0, 0, 1);
    inset: 5x 5px 10px rgba(0,0,0,0.5);
    inset: 5x 5px 20px rgba(0,0,0,0.2);
    inset: -5x -5px 15px rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    flex-direction: column;
}
/*.Body ::before{
    content: '';
    
    z-index: -1;
    opacity: 0.5;
}*/
.clock{
    position: relative;
    width: 400px;
    height: 400px;
    background: darkslategrey;
    border-radius: 50%;
    box-shadow: 10px 40px 40px rgba(0, 0, 0, 0.75);
    inset: 5x 5px 10px rgba(0,0,0,0.5);
    inset: 5x 5px 20px rgba(0,0,0,0.2);
    inset: -5x -5px 15px rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
}
.clock::before{
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: darkslategrey;
    border: 3px solid white;
    border-radius: 50%;
    z-index: 100;
}
.clock span{
    position: absolute;
    inset: 20px;
    color: white;
    text-align: center;
    transform: rotate(calc(30deg*var(--i)));

}
.clock span b{
    opacity: 0.75;
    display: inline-block;
    transform: rotate(calc(-30deg*var(--i)));
}
.circle{
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(0,0,0,0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 10;
}
.circle i{
    position: absolute;
    width: 7px;
    height: 50%;
    background:var(--clr);
    opacity: 0.75;
    transform-origin: bottom;
    transform: scaleY(0.5)
    
}
.circle:nth-child(1) i {
    width: 2px;
}
.circle:nth-child(2) i {
    width: 6px;
}
.circle2{
    width: 240px;
    height: 240px;
    z-index: 9;
}
.circle3{
    width: 180px;
    height: 180px;
    z-index: 8;
}
.circle3::before{
    content: '';
    position: absolute;
    top: -8.5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--clr);
    box-shadow: 0 0 20px var(--clr),
    0 0 60px var(--clr);
}
.quote{
    padding: 10px;
    position: relative;
    color: white;
}
.quote span{
    font-family:fansong;
    font-style: italic;
}
.bottom{
    justify-content: center;
    padding: 40px;
}
.form-group{
    justify-content: center;
    padding: 10px;
    border-style:none;
}

#nm{
    border: 15px solid white;
    border-radius: 12.5px;
    box-shadow: 10px 10px 60px rgba(0, 254, 178, 0.75);
    width: 400px;
    text-align: center;
}
#tm{
    border: 15px solid white;
    border-radius: 12.5px;
    box-shadow: 10px 10px 60px rgba(0, 254, 178, 0.75);
    width: 400px;
    text-align: center;
}
.btn{
    
    border: 15px solid white;
    border-radius: 12.5px;
    box-shadow: 10px 10px 60px rgba(0, 254, 178, 0.75);
}
.container{
    max-width: 400px;
    max-height:none;
    padding: 10px 10px;
    justify-content: center;
    margin: 10px;
    margin-top: 30px;
    border-radius: 12.5px;
    box-shadow: 10px 10px 60px rgba(0, 254, 178, 0.75);
}
.para-styling{
    cursor: pointer;
    font-size: 20px;
    text-align: center;
}
span{
    padding: 10px 10px;
    margin: 10px 10px;
    font-family:fansong;
    font-style: italic;
}    
