html,
body {
  margin: 0;
  padding: 0;
}
body {
  background: #000;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  font-family: "Rubik", sans-serif;
}
.content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 90%;
  padding: 50px 10px;
}
.content__image-block {
  max-height: 65vh;
  height: 100%;
  width: auto;
  max-width: 855px;
}
@media screen and (max-width: 767px) {
  .content__image-block {
    height: auto;
  }
}
.content__image {
  width: auto !important;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.more-button {
  color: #000;
  background: #ffcd7e;
  font-size: 18px;
  line-height: 21px;
  width: 324px;
  max-width: 90%;
  height: 54px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  line-height: 54px;
  display: block;
  vertical-align: top;
  transition: background 0.4s ease;
  /* margin-top: 124px; */
  margin-top: 12vh;
}
.more-button:hover {
  cursor: pointer;
  background: #de984d;
}
