html {
    background: #018DED url(img.jpg)  center;
    background-size: cover;
    font-family: 'helvetica neue';
    text-align: center;
    font-size: 10px;
  }

  body {
    margin: 0;
    font-size: 2rem;
    display: flex;
    flex: 1;
    min-height: 100vh;
    align-items: center;
  }

  .clock {
    width: 30rem;
    height: 30rem;
    border: 20px solid blue;
    border-radius: 50%;
    margin: 50px auto;
    position: relative;
    padding: 2rem;
    box-shadow:
      0 0 0 6px black,
      inset 0 0 0 2px black,
      inset 0 0 100px #cedebd,
      0 0 50px rgba(0,0,0,0.2);
      
  }

  .clock-face {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateY(-3px); /* account for the height of the clock hands */
  }

  .hand {
    width: 50%;
    height: 6px;
    background: #05dfd7;
    position: absolute;
    top: 50%;
    border: 2px solid black;
    transform-origin: 100%;
    transform: rotate(90deg);
    transition: all 0.05s;
    transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
  }

  .info{
    width: 20%;
    border: 5px solid black;
    background-color: lightgrey;
    border-radius: 20% 0 20% 0;
    margin-right: 10%;
    font-size: 2.4rem;
    font-weight: bold;
  }

  .tip{
    width: 15px;
    height: 15px;
    background-color: blue;
    margin-left: 49%;
    top: 49%;
    position: relative;
    border-radius: 50%;
  }

