.story-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 900px;
  height: 480px;
  border-radius: 10px;
  border: 2px solid white;
  background-image: url(../img/kingdom.png);
  background-color: black;
  background-repeat: no-repeat;
  background-position: center;
}

.story-content-top {
  display: flex;
  align-items: center;
  text-align: center;
  font-family: "Inter";
  font-size: 14px;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  color: #efefef;
}

.story-content-bottom {
  display: flex;
  justify-content: center;
}

.btn-story {
  font-size: 16px;
  padding: 8px 32px;
  border-radius: 4px;
  border: 1px solid #efefef;
  background-color: transparent;
  box-shadow: 0 2px 8px 0 rgb(0, 0, 0), 0 3px 10px 0 rgba(254, 254, 254, 0.19);
  color: #efefef;
}

.btn-story:hover {
  cursor: pointer;
  transform: scale(1.2);
  transition: transform 0.5s ease-in-out, color 0.5s ease-in-out;
  backdrop-filter: sepia(90%);
  color: rgb(255, 0, 0);
}

@media only screen and (max-width: 1000px) {
  .story-wrapper {
    width: 100%;
    height: 100vh;
    justify-content: space-around;
    background-position: bottom;
    background-size: cover;
    border: none;
    border-radius: 0px;
  }
}
