body {
  margin: 0;
  background-image: url('../img/background.jpg');
  background-position: left center;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: brightness(0.5);
  position: relative;
  width: 100vw;
}


.dNone {
  display: none;
}

.gamePage {
  position: relative;
  margin: auto;
  max-width: 1200px;
  height: 700px;
  
}

canvas {
  background-color: black;
  border-radius: 10px;
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.screenButton {
  width: 100%;
  bottom: 10px;
  position: absolute;
  height: 50px;
  font-family: 'Suez One',Arial, Helvetica, sans-serif;
  left: 90%;
}

.screenButton span {
  cursor: pointer;
}

.screenButton ion-icon {
  width: 50px;
  height: 50px;
  color: white;
  cursor: pointer;
}

h1 {
  color: #f2f2f2;
  font-size: 50px;
  text-align: center;
  font-family: "Rye", sans-serif;
  padding: 10px 0;
  margin: 0;
}

.buttonContainer {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  margin-left: 30px;
  max-width: 1200px;
  gap: 40px;
}

.buttonContainer button {
  width: 220px;
  height: 60px;
  z-index: 1;
  border: none;
  border-radius: 5px;
  background: orange;
  font-size: 25px;
  font-family: "Rye";
  margin-top: 52px;
  cursor: pointer;
  transition: background 0.5s ease-in-out, transform 0.5s ease-in-out;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.buttonContainer button:hover {
  background: #FF9600;
  transform: scale(1.04);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.keyboardInfo {
  display: flex;
  gap: 20px;
}

.mobileButton {
  width: 100%;
  flex-direction: column;
  bottom: 100px;
  position: absolute;
}

.mobileButtonFlex {
  padding: 0 20px 0 20px;
  display: flex;
  justify-content: space-between;
}

.mobileBTN {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border: solid;
  padding: 10px;
  margin-bottom: 10px;
  width: 30px;
  height: auto;
  background-color: black;
  display: flex;
}

.mobileBTN ion-icon {
  width: 40px;
  height: 30px;
  color: #FF9600;
}

.buttonContainer a {
  height: 110px;
  width: 100px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  font-size: 50px;
  cursor: pointer;
  text-decoration: none;
  color: white;
}

.impressumSide {
  background: #cacaca;
  font-family: "Inter", sans-serif;
  width: 70%;
  margin: auto;
  border-radius: 10px;
  padding: 50px;
}
