.gameboard {
  position: relative;
  height: 800px;
}

.boardelements {
  position: absolute;
  width: 80vw;
}

#pointer{
  opacity: 0.8;
}

#rotatebutton {
  cursor: pointer;
  position: absolute;
  top: 80px;
  left: 20px;
  width: 70px;
  height: 70px;
  background-color: transparent;
  border: none;
  color: black;
  border-radius: 50%;
}

@media screen and (max-width: 992px){

  .gameboard {
    position: relative;
  }

  .boardelements {
    position: absolute;
    width: 140%;
  }

  #rotatebutton {
    cursor: pointer;
    position: absolute;
    font-size: 20px;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    color: black;
    border-radius: 50%;
  }
}
