*,*::after,*::before{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background-image: radial-gradient(circle at 50%, red 0.5em, blue);
}
.container{
   position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
   width: 300px;

}
h1{
    text-align: center;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 20px;

}
.clock{
    width: 300px;
    height: 300px;
   
    border-radius: 50%; 
    position: relative;
outline: 20px solid #00000041; /* Use a solid color for outline */
outline-offset: 10px;
 background-color: rgba(255, 255, 255, 0.089);
   backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.171);
}
.clock::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.274);
   backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.171);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.171);
    z-index: 9;
}
.clock::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 25px;
    height: 25px;
    background-image: radial-gradient(circle at 50%, rgba(11, 73, 189, 0.603) 0.5em, rgb(207, 207, 221));
    border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.493);
   backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.171);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.171);
    z-index: 11;
}
.hand{
    position: absolute;
    top: 50%;
    left: 0%;
    transform: rotate(90deg);
    transform-origin: 100%;
    width: 50%;
    height: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.089);
   backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.171);
    z-index: 10;
    transition: all 0.05s cubic-bezier(0.68, 0.55, 0.265, 1.55);
}

.min{
    height: 6px;
    width: 40%;
    /* background-color: rgba(255, 255, 255, 0.377);
    border: 1px solid rgba(0, 0, 0, 0.171); */
    position: absolute;
    top: 50%;
    left: 10%;
}

.hour{
    height: 8px;
    width: 30%;
    /* background-color: rgba(255, 255, 255, 0.377);
    border: 1px solid rgba(0, 0, 0, 0.171); */
    position: absolute;
    top: 50%;
    left: 20%;
}