.game-over-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: inherit;
  width: 900px;
  height: 480px;
  border-radius: 10px;
  border: 2px solid white;
  background-image: url(../img/skeleton.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.game-over-content-top {
  font-family: "Uncial Antiqua", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  color: red;
  text-shadow: 2px 2px 3px black;
  padding-top: 24px;
}

.game-over-content-center {
  font-family: "Roboto", serif;
  font-size: 24px;
  color: #efefef;
}

.game-over-content-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
}

@media only screen and (max-width: 1000px) {
  .game-over-wrapper {
    width: 100%;
    height: 100vh;
    justify-content: center;
    text-align: center;
    background-size: cover;
    border: none;
    border-radius: 0px;
    /* background-position: center center; */
  }
}
