*{
    margin: 0;
    padding: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}
:root{
    --first-color:aliceblue;
    --white:#fff;
    --black:#000000;
    --red:#e74c3c;
    --box-shadow:0 15px 25px rgba(0, 0, 0, 0.5);
    --text-color:#000;

}
body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--first-color);
}
body.themes{
    --first-color:rgb(16, 16, 16);
    --white:#111111;
    --black:#ec3939;
    --red:#2de4f4;
    --box-shadow:0 15px 25px rgba(174, 170, 170, 0.5);
    --text-color:#ffffff;


}
.heading{
    color: var(--text-color);
text-shadow: var(--box-shadow);
}
.myContainer .analog-clock{
    position: relative;
    display: flex;
    height: 450px;
    width: 450px;
    background: var(--white);
    box-shadow:var(--box-shadow);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 3px solid aquamarine;
    transition: 0.3s all ease;
    
}
.myContainer .analog-clock:hover{
    border: 2px solid rgb(232, 148, 37);
    transform: translatey(-10px);
}
.analog-clock label{
    position: absolute;
    inset: 20px;
    transform: rotate(calc(var(--i)* (360deg/12)));
    text-align: center;
}
.analog-clock label span{
    display: inline-block;
    font-size: 28px;
    color: var(--black);
    font-weight: 600;
    transform: rotate(calc(var(--i) * (-360deg /12)));

}
.myContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}
.myContainer .clock-hand {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: red;
    display: flex;
    justify-content: center;
}
.clock-hand::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--red);
    background:var(--black);
    border-radius: 50%;
    z-index: 10;
}
.clock-hand .hand{
    position: absolute;
    height: 130px;
    width: 4px;
    bottom: 0;
    background-color: var(--red);
    transform-origin: bottom;
    border-radius: 25px;
}
.hand.minutes{
    height: 120px;
    width: 5px;
    background: var(--black);
}
.hand.hour{
    height: 110px;
    width: 8px;
    background: var(--black);
}
.theme{
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    background: black;
    box-shadow: var(--box-shadow);
color: white;
transition: 0.3s all ease;}
.theme:hover{
    transform: translateY(-10px);
    border: 1px dashed aqua;
}
.ten{
    font-size: 18px;
    color: var(--red);
    font-weight: 400px;
}

