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