body {
  background-image: url("https://images.unsplash.com/photo-1516541196182-6bdb0516ed27?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  margin: 0;
  height: 100vh;
  width: 100vw;
  display: grid;
  place-items: center;
  font-family: Georgia, 'Times New Roman', Times, serif;

}
h1 {
  height:fit-content;
}

h2 {
  font-size:small;
  place-items: center;
  height: fit-content;
  margin-top: -10px;
}

#container {
  background-image: url("https://images.squarespace-cdn.com/content/v1/5aa439008ab7221937fc7d48/740e8413-4270-4a08-9fed-4efb40c1c450/Chair_02.jpg?format=1500w");
  background-size: cover;
  background-position: center;
  width: 600px;
  height: 400px;
  border: 2px solid rgb(0, 0, 0);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.player {
  position: absolute;

}

.player img {
  width: 100%;
  height: 100%;
}

.obstacle {
  position: absolute;
}

.obstacle img {
  width: 100%;
  height: 100%;
}

.prize {
  position: absolute;
}

.prize img {
  width: 100%;
  height: 100%;
}

#score {
  width: auto;
  height: auto;
  border: 2px solid rgb(139, 52, 156);
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  position: relative;
}

#gameover {
  font-family: Georgia, 'Times New Roman', Times, serif rgb(100, 18, 167);
  font-weight: bold;
}