*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
}
body{
  background-color: rgb(27, 26, 26);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.container{
  position: relative;
}
.clock{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow:0px 0px 30px rgba(0, 0, 0, 0.9);
}
.clock span{
  position: absolute;
  transform: rotate(calc(30deg * var(--i)));
  inset: 12px;
  text-align: center;
}
.clock span b{
  transform: rotate(calc(-30deg * var(--i)));
  display: inline-block;
  font-size: 20px;
}
.clock::before{
 content: '';
 position: absolute;
 height: 8px;
 width: 8px;
 border-radius: 50%;
 background-color: #fff;
}
.hand{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hand i{
  position: absolute;
  height: var(--height);
  width: 4px;
  background-color: var(--clr);
  border-radius: 8px;
}
#clock{
  align-items: center;
  text-align: center;
  border: 1px solid ;
  font: bold 1.5rem Arial, Helvetica, sans-serif;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 1rem;
}
