body {
      font-family: Arial, Helvetica, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background: #0a69e6ff;
      margin: 0;
      font-family: Arial, sans-serif;
    }

.wrapper {
    border-radius: 50%;
    background-color: #0f172a;
    justify-content: center;
    display: flex;
    align-items: center;
    position: absolute;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

canvas {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
    }

.clock-dial {
    width: 500px;
    height: 500px;
    border: 20px solid rgb(223, 183, 23);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.point {
    width: 20px;
    height: 20px;
    background-color: #f8fafc;
    border-radius: 50%;
    position: absolute;
    top: 240px;
    left: 240px;
    z-index: 1;
}

.hour {
    font-size: 30px;
    font-weight: bold;
    color: #e2e8f0;
    position: absolute;
}

.hour-1 {
    top:40px;
    right: 130px;
}

.hour-2 {
    top: 125px;
    right: 45px;
}

.hour-3 {
    top:235px;
    right: 10px;
}

.hour-4 {
    top:345px;
    right: 45px;
}

.hour-5 {
    top:430px;
    right: 130px;
}

.hour-6 {
    bottom:10px;
    left: 240px;
}

.hour-7 {
    top:430px;
    left: 130px;
}

.hour-8 {
    top:345px;
    left: 45px;
}

.hour-9 {
    top:235px;
    left: 10px;
}

.hour-10 {
    top:125px;
    left: 45px;
}

.hour-11 {
    top:40px;
    left: 130px;
}

.hour-12 {
    top:10px;
    left: 235px;
}

.brand {
    font-size: 20px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    position: absolute;
    top: 90px;
    left: 43.5%;
}

.minute-hand-wrapper {
    width: 400px;
    height: 400px;
    position: absolute;
    top: 50px;
    left: 50px;
    border-radius:50%;
}

.minute-hand {
    position: relative;
}

.minute-hand .hand {
    width: 4px;
    height: 200px;
    background-color: #38bdf8;
    position: absolute;
    left: 198px;
}

.hour-hand-wrapper {
    width: 300px;
    height: 300px;
    position: absolute;
    top: 100px;
    left: 100px;
    border-radius:50%;
}

.hour-hand {
    position: relative;
}
 
.hour-hand .hand {
    width: 4px;
    height: 150px;
    background-color: #e2e8f0;
    position: absolute;
    left: 148px;
}

.second-hand-wrapper {
    width: 350px;
    height: 350px;
    position: absolute;
    top: 75px;
    left: 75px;
    border-radius:50%;
}

.second-hand {
    position: relative;
}

.second-hand .hand {
    width: 2px;
    height: 175px;
    background-color: black;
    position: absolute;
    left: 174px;
    background-color: #c61919;
}
