@import url("https://fonts.googleapis.com/css2?family=Nerko+One&family=Noto+Serif+Khojki&family=Patrick+Hand&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.description {
  display: flex;
  flex-direction: column;
}

.description__topic {
  margin: 40px 0 40px 20px;
  font-family: "Nerko One", cursive;
  font-size: 60px;
}

.description__intro {
  margin-left: 20px;
  font-family: "Noto Serif Khojki", serif;
  font-size: 22px;
}

.description__rules {
  margin: 40px 0 0 20px;
  font-family: "Patrick Hand", cursive;
  font-size: 36px;
}

.description__rules--smallerFont {
  margin: 10px 0 0 40px;
  font-family: "Patrick Hand", cursive;
  font-size: 24px;
}

#startButton {
  background-color: #FF6464;
  border-radius: 30px;
  box-shadow: -3px 5px grey;
  color: white;
  font-family: "Nerko One", cursive;
  font-size: 36px;
  margin-top: 40px;
  padding: 15px 20px 15px 20px;
  align-self: center;
}
#startButton:hover {
  cursor: pointer;
}
#startButton:active {
  transform: scale(0.95);
}

.game__box {
  margin: 40px 10px 40px 20px;
  border: 10px solid black;
  border-radius: 5px;
  background-color: #11D8EE;
  width: 330px;
  height: 500px;
  display: flex;
  flex-direction: column;
}

.game__bar {
  background-color: #023047;
  width: 310px;
  height: 45px;
  display: flex;
  justify-content: center;
}

.game__decoration {
  position: absolute;
  width: 80px;
  height: 80px;
}

.game__chance {
  position: relative;
  left: 90px;
  margin: 2px;
  width: 37px;
  height: 37px;
}

.game__objects {
  width: 310px;
  height: 440px;
  display: flex;
  justify-content: space-evenly;
}

.game__apples {
  display: none;
  margin: 0 3px 0 3px;
  width: 45px;
  height: 45px;
}

.game__player {
  width: 80px;
  height: 76px;
  position: fixed;
  top: -68px;
}

#congratsImg {
  width: 280px;
  height: 225px;
}

#game__win {
  font-family: "Nerko One", cursive;
  font-size: 48px;
  line-height: 24px;
  position: relative;
  color: #FF6464;
  top: -400px;
  left: 30px;
  display: none;
}

@media screen and (min-width: 820px) {
  body {
    display: flex;
    column-gap: 40px;
  }

  .game__box {
    width: 460px;
    height: 700px;
  }

  .game__bar {
    width: 440px;
    height: 63px;
  }

  .game__decoration {
    width: 112px;
    height: 112px;
  }

  .game__chance {
    position: relative;
    left: 130px;
    margin: 3px;
    width: 50px;
    height: 50px;
  }

  .game__objects {
    width: 440px;
    height: 625px;
  }

  .game__apples {
    width: 63px;
    height: 63px;
  }

  .game__player {
    width: 90px;
    height: 85px;
    position: fixed;
    top: -77px;
  }

  #congratsImg {
    width: 560px;
    height: 450px;
  }

  #game__win {
    font-family: "Nerko One", cursive;
    font-size: 88px;
    line-height: 24px;
    position: relative;
    color: #FF6464;
    top: -650px;
    left: -30px;
    display: none;
  }
}