body {
    background: cyan;
    margin: 24px;
    text-align: center;
  }

  .timer {
    font-family: sans-serif;
    display: inline-block;
    padding: 24px 40px;
    border-radius: 30px;
    background: #fff;
  }
  
  .timer__part {
    font-size: 36px;
  }
  
  .timer__btn {
    width: 50px;
    height: 50px;
    margin-left: 16px;
    border-radius: 50%;
    border: none;
    color: white;
    background: #8208e6;
    cursor: pointer;
  }
  
  .timer__btn--start {
    background: #00b84c;
  }
  
  .timer__btn--stop {
    background: #ff0256;
  }
  