html, body {
    height: 100%;
    width: 100%;
    overflow-y: none;
  }
  
  body {
    background-color: #eee;
    position: relative;
    margin: 0;
  }
  
  .button {
    box-shadow: 0px 15px 0 20px #352d2d, 0px 40px 0 30px #000000;
    cursor: pointer;
    background-color: #c0392b;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    width: 480px;
    height: 80px;
    transform: translateX(-50%);
    /* Add this line to fix the touch issue */
    -webkit-tap-highlight-color: transparent; 
  }
  
  .button::before {
    content: '';
    z-index: 1;
    border-radius: 50%;
    background-color: #e74c3c;
    position: absolute;
    bottom: 100%;
    left: 0%;
    transition: bottom 0.4s;
    width: 480px;
    height: 80px;
  }
  
  .button::after {
    content: '';
    background-color: #c0392b;
    position: absolute;
    bottom: 50%;
    left: 0%;
    width: 480px;
    height: 80px;
    transition: height 0.4s;
  }
  
  .button.active::before { 
    bottom: 10%; 
  }
  
  .button.active::after { 
    height: 10%; 
  }

.cat-status {
  padding-top: 5vh;
  display: flex;
  justify-content: center;
  align-items: top;
  height: 100vh;
  overflow: none;
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.cat-status div {
    margin-left: 10px;
}