.rotating {
  animation: rotate 1s infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

body {
  background-color: #454f46;
  overflow: hidden;
  font-family: sans-serif;
  text-align: center;
  color: rgb(214, 214, 214);
}

#gameArea {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.image {
  position: absolute;
  cursor: pointer;
  width: 50px;
}

.splash {
  cursor: pointer;
  position: fixed;
  top: 0%;
  left: 0%;
  height: 100vh;
  width: 100vw;
}

.hidden {
  transition: 0.5s;
  display: none;
}
