html,
body,
#root {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.playField {
  width: 100%;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
  font-size: 3rem;
  text-align: center;
}

.footer {
  width: 99%;
  background-color: #371f0f;
  color: lightgrey;
  bottom: 12px;
  text-align: right;
  position: absolute;
  font-size: 0.9rem;
  padding-right: 1%;
}

.mobileWarning {
  visibility: hidden;
  position: absolute;
  background-color: black;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 2rem;
  align-content: center;
}
@media only screen and (max-width: 760px) {
  .mobileWarning {
    visibility: inherit;
  }
}
