body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "AbrilFatface-Regular";
  background-image: url("img/9_intro_outro_screens/start/bg_desert.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
  margin: 0;
  overflow: hidden;
}

.start_screen {
  background-image: url("img/9_intro_outro_screens/start/startscreen_1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  border: 1px solid;
  display: flex;
  justify-content: center;
  height: 421px;
  width: 720px;
}

.startgamebtn {
  font-size: 24px;
  width: 200px;
  height: 40px;
  margin-top: 32px;
  font-family: "AbrilFatface-Regular";
  background-color: rgb(248, 217, 62);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.tryagainbtn {
  margin: 10px;
  font-family: "AbrilFatface-Regular";
  font-size: 24px;
  font-weight: 500;
  width: 200px;
  background-color: rgb(235, 159, 66);
  border-radius: 16px;
  cursor: pointer;
}

.startmenübtn {
  margin: 10px;
  font-family: "AbrilFatface-Regular";
  font-size: 24px;
  width: 200px;
  font-weight: 500;
  background-color: rgb(185, 110, 19);
  border-radius: 16px;
  cursor: pointer;
}

.playagainbtn {
  margin: 10px;
  font-family: "AbrilFatface-Regular";
  font-size: 24px;
  width: 200px;
  font-weight: 500;
  background-color: rgb(195, 76, 76);
  border-radius: 16px;
  cursor: pointer;
}

.winstartmenübtn {
  margin: 10px;
  font-family: "AbrilFatface-Regular";
  font-size: 24px;
  width: 200px;
  font-weight: 500;
  background-color: rgb(195, 76, 76);
  border-radius: 16px;
  cursor: pointer;
}

.gameoverscreen {
  background-image: url("img/9_intro_outro_screens/game_over/game over!.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 421px;
  width: 720px;
  display: flex;
  position: relative;
  align-items: flex-end;
  justify-content: center;
  /* flex-direction: column; */
  border-radius: 10px;
}

.winningscreen {
  background-image: url("img/9_intro_outro_screens/win/win_2.png");
  background-color: rgba(0, 0, 0, 0.7);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  align-items: flex-end;
  height: 480px;
  width: 720px;
  border: 2px solid rgb(158, 145, 145);
  border-radius: 10px;
}

.footericon {
  height: 32px;
  cursor: pointer;
}

.footericon2 {
  display: flex;
  height: 32px;
  cursor: pointer;
}
footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 720px;
  height: 50px;
  background-color: rgb(204 203 20);
  border-radius: 16px;
  margin: 8px;
}

.instruction {
  display: none;
  justify-content: space-around;
  height: 421px;
  width: 720px;
  background-color: rgb(220, 99, 12);
}

.detailsinstruction {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.mobileicon {
  height: 40px;
  width: 40px;
  cursor: pointer;
}

.insticons {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.close-btn {
  font-size: 24px;
  width: 200px;
  height: 40px;
  margin-top: 32px;
  font-family: "AbrilFatface-Regular";
  background-color: rgb(248, 217, 62);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.policy {
  display: none;
  justify-content: center;
  font-family: "AbrilFatface-Regular";
  font-size: 24px;
  overflow-y: auto;
  padding: 16px;
  height: 421px;
  width: 688px;
  background-color: rgb(227 255 58);
}

/* Gesamte Scrollleiste */
::-webkit-scrollbar {
  width: 10px;
  /* Breite des Scrollbalkens */
  background-color: #f1f1f1;
  /* Hintergrundfarbe der Scrollleiste */
}

/* Schieberegler (Thumb) */
::-webkit-scrollbar-thumb {
  background-color: #ff6f00;
  /* Farbe des Schiebereglers */
  border-radius: 5px;
  /* Abgerundete Ecken */
  border: 2px solid black;
  /* Rand um den Schieberegler */
}

/* Beim Hover über den Schieberegler */
::-webkit-scrollbar-thumb:hover {
  background-color: #e65100;
  /* Dunklere Farbe beim Hover */
}

/* Bereich unterhalb des Schiebereglers */
::-webkit-scrollbar-track {
  background-color: #d27a07;
  /* Farbe des Tracks */
  border-radius: 1px;
  /* Abgerundete Ecken */
}

#impressum::-webkit-scrollbar {
  width: 10px;
}

#impressum::-webkit-scrollbar-thumb {
  background-color: #904206;
}

.closepolicy {
  display: flex;
  justify-content: flex-end;
}

.orientation-warning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 44px;
  z-index: 9999;
  display: none;
}

.orientation-warning p {
  padding: 40px;
}

.mobilecontrol {
  height: 200px;
  width: 7%;
  display: none;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  border: 1px solid black;
  border-radius: 16px;
  margin: 16px;
  background-color: lightgoldenrodyellow;
  padding: 8px;
}

.mobileicon {
  height: 40px;
  width: 40px;
  cursor: pointer;
}

#fullscreen {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 480px !important;

}

@font-face {
  font-family: "AbrilFatface-Regular";
  src: url('font/AbrilFatface-Regular.ttf');
}