*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    width: 100%;
    height: 100vh;
    /* background: linear-gradient(135deg,  #fff, #f3f3f3, #48df84); */
    background-image: url("./img/bg-1.avif");
    background-size: cover;
}
.container{
    width: 400px;
    height: 400px;
    border: 1px solid #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 10px 10px 30px rgba(0,0,0, 0.4);
}
.clock{
    width: 320px;
    height: 320px;
    border: 1px solid #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 10px 10px 30px rgba(0,0,0, 0.4) inset;
    background: url("./clock.png");
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.clock::before{
    content: "";
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
    border: 2px solid red;
}
.hr, .min, .sec{
    /* border: 2px solid black; */
    position: absolute;
    display: flex;
    justify-content: center;
    
}
.hr{
    width: 150px;
    height: 150px;
}
.min{
    width: 200px;
    height: 200px;
}
.sec{
    width: 250px;
    height: 250px;
}
.hr::before{
    content: "";
    position: absolute;
    width: 8px;
    height: 85px;
    background-color: black;
    z-index: 1;
    border-radius: 50%;
}
.min::before{
    content: "";
    position: absolute;
    width: 5px;
    height: 110px;
    background-color: rgb(0, 0, 0);
    z-index: 2;
    border-radius: 50%;
}
.sec::before{
    content: "";
    position: absolute;
    width: 3px;
    height: 150px;
    background-color: rgb(0, 0, 0);
    z-index: 3;
    border-radius: 50%;
}