/* body {
    margin: 0px;
  }

  #body {
    margin-top: 0px;
  } */

  .base-timer {
    z-index: 1000;
    display: block;
    visibility: hidden;
    margin: auto;
    position: relative;
    width: 300px;
    z-index: 100;
    height: 300px;
    left: -96px;
   /* top: 20px; */
    pointer-events: none;
  }

  .base-timer__svg {
    transform: scaleX(-1);
  }

  .base-timer__circle {
    fill: none;
    stroke: none;
    transform: scale(0.35);
  }

  .base-timer__path-elapsed {
    stroke-width: 8px;
    stroke: grey;
  }

  .base-timer__path-remaining {
    stroke-width: 8px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
  }

  .base-timer__path-remaining.green {
    color: rgb(65, 184, 131);
  }

  .base-timer__path-remaining.orange {
    color: orange;
  }

  .base-timer__path-remaining.red {
    color: red;
  }

  /* the digital clock */
  .base-timer__label {
    position: relative;
    border: solid thin transparent;
    width: 70px;
    height: 40px;
    top: 0;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    display: flex;
    position: relative;
    top: -273px;
    left: 212px;
    color: transparent;
  }

  .timer {
    position: fixed;
    top: 0px;
    left: 1px;
    font-family: sans-serif;
    height: 10vh;
    place-items: center;
    display: block;
    visibility: visible;
    margin: auto;
    text-align: center;
    width: 100%;
  }