body {
  display: flex;
  justify-content: center;
   align-items: center;
   }
   
    
    
  .container {
  position: absolute;
  }
  
  .mainbtn {
     transform: translate(-225px, 30vh);
  position: absolute; 
  margin: auto;
  }
  
  
    .hub {
        transform: translate(-225px, 30vh);
  position: absolute; 
  margin: auto;
  display: block;
  margin-top: 230px;
  margin-left: 25px;

  }
  
  
      .thinkr {
            transform: translate(-225px, 30vh);
  position: absolute; 
  margin: auto;
  display: block;
  margin-top: 230px;
  margin-left: 253px;
       
  }
  


.clock {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: absolute;
    padding: 20px; 
 transform: translate(-150px);
}
    
.clock-face {
    position: absolute;
    width: 304px;
    height: 304px;
    transform: translateY(-3px); /* Fix for the hands positioning */
    background:  url("clock.png") no-repeat center;
}

.hand {
    width: 40%;
     left: 10%;
    background: black;
    position: absolute;
    top: 50%;
    transform-origin: 100%;
    transform: rotate(90deg);
    transition: all 0.05s;
    transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
}

.hour-hand {
    height: 6px;
}

.minute-hand {
    height: 4px;
}

.second-hand {
    height: 2px;
    background: red;
}

