@font-face {
  font-family: "zabras";
  src: url("../assets/font/zabars/zabars.ttf") format("truetype");
}

body {
  height: 100vh;
  font-family: "Zabras", Arial, Helvetica, sans-serif;
  background-image: url("../assets/img/10_page_background/desert-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.game-screen {
  height: 480px;
  width: 720px;
  position: relative;
}

.game-content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.toggle-sound-game {
  position: absolute;
  top: 5px;
  right: 5px;
}

.toggle-sound-game img {
  height: 25px;
}

.control-buttons-left {
  position: absolute;
  left: 5px;
  bottom: 5px;
}

.control-buttons-right {
  position: absolute;
  right: 5px;
  bottom: 5px;
}

h1 {
  font-size: 64px;
  letter-spacing: 3px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.title {
  margin-top: 0;
}

canvas {
  height: 100%;
  width: 100%;
  background-color: black;
  display: block;
}

.control-buttons-left {
  display: none;
}

.control-buttons-right {
  display: none;
}

button {
  cursor: pointer;
}

.start-screen {
  height: 100%;
  width: 100%;
  background-image: url("../assets/img/9_intro_outro_screens/start/startscreen_2.png");
  background-repeat: no-repeat;
  background-size: 720px 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: 2px solid transparent;
  position: relative;
  z-index: 10;
}

.start-title {
  display: block;
}

.top {
  height: 32%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 10px;
}

.top-left {
  margin-left: 20px;
}

.play {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
}

.play img {
  height: 40px;
}

.top-middle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-right {
  display: flex;
  gap: 8px;
  margin-right: 20px;
}

.controls-btn img {
  height: 30px;
  cursor: pointer;
}

.sound img {
  height: 30px;
  cursor: pointer;
}

.middle {
  height: 32%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom {
  height: 32%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bottom-left {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-left: 20px;
}

.bottom-middle {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.bottom-right {
  width: 15%;
  margin-right: 20px;
}

.ln-btn {
  font-size: 32px;
  cursor: pointer;
}

.wanted {
  height: 100%;
}

.legal-notice {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 40;
  background-image: url("../assets/img/5_background/layers/air.png");
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid black;
  display: flex;
  flex-direction: column;
  font-size: 21px;
  text-wrap: wrap;
}

.impressum {
  height: 90%;
  overflow: auto;
  scrollbar-width: thin;
  padding: 10px;
}

.impressum h1 {
  font-size: 42px;
  margin-top: 10px;
}

.ln-top {
  display: flex;
  align-items: center;
}

.controls {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 50;
  background-image: url("../assets/img/5_background/layers/air.png");
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid black;
  display: flex;
  flex-direction: column;
  font-size: 40px;
}

.controls-top {
  display: flex;
  align-items: center;
  padding: 10px;
}

.controls-description {
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.back-arrow {
  cursor: pointer;
}

.go-back {
  font-size: 32px;
}

.game-result {
  height: 100%;
  width: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 600;
}

.game-result img {
  height: 30%;
  width: 30%;
}

.game-end-btn {
  width: 80%;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.game-end-btn button {
  height: 50px;
  width: 120px;
  border: 1px solid black;
  border-radius: 5px;
  font-family: "Zabras";
  font-size: 24px;
  background-color: #fba467;
}

.game-end-btn button:hover {
  transform: scale(1.3);
}

.none {
  display: none;
}

.portrait-mode {
  display: none;
}
