body, html {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Smokum';
  min-height: 100vh;
  min-width: 100vw;
  max-height: 100vh;
  max-width: 100vw;
  background-image: url("img/10_backgrounds/sunset-mist-desert-4k-iq-1920x1080.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

canvas {
  background-color: rgb(12, 12, 12);
  width: 720px;
  height: 480px;
  border-radius: 15px;
  box-shadow: 0px 15px 50px 15px rgb(0, 0, 0);
}

.start_game_placeholder {
  background-image: url("img/9_intro_outro_screens/start/startscreen_1.png");
  background-position: center;
  background-size: cover;
  background-color: rgb(12, 12, 12);
  width: 720px;
  height: 480px;
  border-radius: 15px;
  box-shadow: 0px 15px 50px 15px rgb(0, 0, 0);
}

.turn_placeholder {
  background-color: black;
  background-position: center;
  background-size: cover;
  background-color: rgb(12, 12, 12);
  width: 720px;
  height: 480px;
  border-radius: 15px;
  box-shadow: 0px 15px 50px 15px rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.turn_phone {
  display: flex;
  color: white !important;
  font-size: 35px;
}

.endscreen_show {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgb(22,22,22);
  height: calc(100% - 80px);
  text-shadow: 0 -1px 54px rgb(42,150,188), 0 -2px 10px #ff0, 0 -10px 20px #ff8000,
  0 -18px 40px #f00, 4px 0px 1px rgba(206, 89, 55, 0);
}

.start_game_menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 80px;
}

.animation {
  animation: fade-in 1s forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.start_game_menu div {
  font-size: 35px;
  margin: 5px;
  margin-right: 35px;
  cursor: pointer;
  color: rgb(22, 22, 22);
  text-shadow: 0 -1px 54px rgb(42,150,188), 0 -2px 10px #ff0, 0 -10px 20px #ff8000,
    0 -18px 40px #f00, 4px 0px 1px rgba(206, 89, 55, 0);
}

.start_game_menu div img {
  display: flex;
  width: 35px;
  height: 35px;
  filter:
  drop-shadow(0 0px 0px #fff) 
  drop-shadow(0 -2px 10px rgb(255, 251, 0)) 
  drop-shadow(0 -10px 20px #ff5100) 
  drop-shadow(0 -18px 40px #f00);
}

.start_game_menu div img:hover {
  display: flex;
  width: 35px;
  height: 35px;
  filter:
  drop-shadow(1px 1px 1px #fff) 
  drop-shadow(0 -1px 10px rgb(255, 166, 0)) 
  drop-shadow(0 -10px 20px #ff5100) 
  drop-shadow(0 -18px 40px #f00);
  transition: 0.2s ease-in-out;
}

.start_game_menu div:hover {
  text-shadow: 0 -1px 4px #fff, 0 -2px 10px rgb(255, 115, 0),
    0 -10px 20px #ff5100, 0 -18px 40px #f00, 4px 0px 1px rgba(206, 89, 55, 0);
  transform: scale(1.1);
  transition: 0.2s ease-in-out;
}

.game_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -150px;
  border-radius: 55px;
}

.game_section h1 {
  color: rgb(22, 22, 22);
  font-size: 50px;
  text-shadow: 0 -1px 4px #fff, 0 -2px 10px #ff0, 0 -10px 20px #ff8000,
    0 -18px 40px #f00, 4px 0px 1px rgba(206, 89, 55, 0);
}

.game_keybindings_headline {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  font-size: 35px;
}

.game_keybindings_headline div:first-child {
  margin-right: 180px;
  color: rgb(22, 22, 22);
  cursor: pointer;
  text-shadow: 0 -1px 4px #fff, 0 -2px 10px #ff0, 0 -10px 20px #ff8000,
    0 -18px 40px #f00, 4px 0px 1px rgba(206, 89, 55, 0);
}

.game_keybindings_headline div:first-child:hover {
  text-shadow: 0 -1px 4px #fff, 0 -2px 10px rgb(255, 115, 0),
    0 -10px 20px #ff5100, 0 -18px 40px #f00, 4px 0px 1px rgba(206, 89, 55, 0);
  transition: 0.2s ease-in-out;
}

.game_keybindings_headline div:last-child {
  margin-right: 200px;
  color: rgb(22, 22, 22);
  text-shadow: 0 -1px 4px #fff, 0 -2px 10px #ff0, 0 -10px 20px #ff8000,
    0 -18px 40px #f00, 4px 0px 1px rgba(206, 89, 55, 0);
}

.game_keybindings_menu {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 300px;
  margin-top: 50px;
}

.game_keybindings_menu div {
  display: flex;
  width: 450px;
}

.game_keybindings_menu div div {
  font-size: 30px;
  color: rgb(22, 22, 22);
}

.d-none {
  display: none !important;
}

.background {
  z-index: 5;
  background-image: none;
  background-color: rgba(255, 145, 0, 0.534) !important;
}

.test {
  display: flex;
  align-items: center;
  height: 80px;
  width: 500px;
  font-size: 50px;
  font-family: sans-serif;
  list-style: none;
}

.canvas_container {
  position: relative;;
}

.mobile_buttons {
  position: absolute;
  display: flex;
  justify-content: space-between;
  left: 30px;
  right: 30px;
  font-size: 18px;
  bottom: 10px;
}

.mobile_buttons div {
  display: flex;
  width: 120px;
}

.mobile_key span {
  font-size: 20px !important;
  background-color: rgba(255, 166, 33, 0.726);
  border-radius: 100%;
  padding: 7px;
  border: 1px solid rgb(29, 29, 29);
}

@media (max-width: 720px) {
  .game_section {
    width: 100%;
  }

  canvas {
    width: 100%;
    height: calc(100% - 59px);
  }

  .start_game_placeholder {
    width: 100%;
    background-position: right -50px center;
  }
}