body {
  background: url('../../public/images/bg1.png');
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
  min-height: 100vh;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
.game__container {
  display: flex;
  flex-direction: column;
  justify-content: center;

  align-items: center;
  align-content: center;
  width: auto;
}
.game__container--header {
  position: relative;
  height: 100px;
  display: flex;
  width: 950px;
  margin: 0 auto;
  justify-content: center;
  background-color: #fff;
  margin-top: 130px;
  z-index: 1;
}
.game__container--header > div {
  flex: 1;
}
.game__container--header-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 20px;
  margin-top: 10px;
}

.game__container--header--left-settings {
  display: flex;
  gap: 20px;
}

.game__container--header--left-settings img {
  height: 35px;
  opacity: 0.7;
  cursor: pointer;
}

.game__container--header-logo {
  position: absolute;
  text-align: center;
  top: -105px;
}
.game__container--header-logo img {
  height: 200px;
}
.game__container--header-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-right: 20px;
  margin-top: 10px;
}

.game__container--header--right-sound {
  display: flex;
  gap: 20px;
}

.game__container--header--right-sound img {
  height: 35px;
  opacity: 0.7;
  cursor: pointer;
}

.game__container--header--right-lives img {
  height: 30px;
}

#game-canvas {
  border: 1px solid #000;
  height: auto;
  box-sizing: border-box;
  box-shadow: 27px -120px 67px 26px rgba(0, 0, 0, 0.66);
  -webkit-box-shadow: 27px -120px 67px 26px rgba(0, 0, 0, 0.66);
  -moz-box-shadow: 27px -120px 67px 26px rgba(0, 0, 0, 0.66);
  position: relative;
}

.greyscaled {
  filter: grayscale(100%);
}

.game__container-body {
  position: relative;
}

.game__container--body-leafs {
  display: flex;
  position: absolute;
  top: -30px;
  margin-left: 5px;
  z-index: 2;
}

.game__container--body-leafs img {
  height: 30px;
}

.game__container--body-lives {
  display: flex;
  position: absolute;
  top: -40px;
  margin-right: -15px;
  z-index: 2;
  justify-content: flex-end;
  width: 99%;
}

.game__container--body-lives img {
  height: 40px;
}

.blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  filter: blur(5px);
}

.modal__overlay {
  position: fixed;
  height: 100vh;
  width: 100vw;
  opacity: 0.6;
  background-color: rgb(130, 130, 130);
  z-index: 3;
}

.hidden {
  visibility: hidden;
}
