@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

html, body { 
  
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Luckiest Guy', cursive !important; 
  -webkit-user-select:none;
  -moz-user-select:-moz-none;
  -ms-user-select:none;
  user-select:none;
  color: black ;
}

.myButton{

  cursor: pointer;
}

.playground {

    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#count{

  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 80px;
}

.logo {

  width: 70px;
  height: 70px;
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 1;
}

#magic {

  position: fixed;
  width: 100%;
  height: 100vh;
  display: block;
  top: 0;
  left: 0;
  z-index: -9999;
}