JSFiddle - React, Tailwind, and code Playground

HTML

<input id="hidden-checkbox" type="checkbox"></input>
<label for="hidden-checkbox"></label>

CSS

body {
  overflow: none;
}

label {
    display: block;
    background: #f00;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    transition: all .5s;
}

input:checked + label {
     transform: scale(30);
}

input {
   visibility: hidden;
   position: absolute;
}