* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: lolo;
}

@font-face {
  font-family: lolo;
  src: url(../ttf/alarm\ clock.ttf);
}
body {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("https://th.bing.com/th/id/R.81e5e7aa1c481314cd29b8ce29e63bcb?rik=DN3kt6m4edDvKA&pid=ImgRaw&r=0");
  background-size: cover;
  background-repeat: no-repeat;
}

.main {
  width: 500px;
  height: 500px;
  border: 15px solid rgba(0, 0, 102, 0.439);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.main .char {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 460px;
  border-radius: 50%;
}
.main .char span {
  color: blue;
  font-size: 25px;
  position: absolute;
  height: 50%;
  left: 50%;
  transform: translateX(-50%) rotateZ(calc(var(--i) * 30deg));
  transform-origin: 50% 100%;
}
.main .char span div {
  transform: translateX(-50%) rotateZ(calc(var(--i) * -30deg));
}
.main .center {
  width: 400px;
  height: 400px;
  position: relative;
  border-radius: 50%;
}
.main .center div {
  position: absolute;
  bottom: calc(50% - 30px);
  left: 50%;
  height: 50%;
  transform-origin: 50% calc(100% - 30px);
  transform: translateX(-50%);
}
.main .center .h {
  width: 20px;
  height: 40%;
  z-index: 200;
  background-color: gold;
  -webkit-clip-path: polygon(50% 0%, 100% calc(100% - 30px), 50% 100%, 0% calc(100% - 30px));
          clip-path: polygon(50% 0%, 100% calc(100% - 30px), 50% 100%, 0% calc(100% - 30px));
}
.main .center .m {
  width: 10px;
  height: 47%;
  z-index: 100;
  background-color: red;
  border-radius: 5px;
  -webkit-clip-path: polygon(50% 0%, 100% calc(100% - 30px), 50% 100%, 0% calc(100% - 30px));
          clip-path: polygon(50% 0%, 100% calc(100% - 30px), 50% 100%, 0% calc(100% - 30px));
}
.main .center .s {
  width: 5px;
  height: 50%;
  z-index: 0;
  background-color: green;
  border-radius: 5px;
  -webkit-clip-path: polygon(50% 0%, 100% calc(100% - 30px), 50% 100%, 0% calc(100% - 30px));
          clip-path: polygon(50% 0%, 100% calc(100% - 30px), 50% 100%, 0% calc(100% - 30px));
}/*# sourceMappingURL=style.css.map */