@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Thin.ttf") format("truetype");
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-position: center;
  background: #00B956;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 100vh;
}
.wrapper header, .wrapper footer, .wrapper main {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-height: 827px) {
  .container {
    padding: 0 18px;
  }
}

.header {
  padding-top: 11px;
  position: relative;
  padding-bottom: 10px;
}
.header__container {
  display: flex;
  justify-content: center;
  position: relative;
  padding-top: 10px;
  z-index: 3;
}
.header__danger {
  position: absolute;
  right: 0;
  top: 0;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 1 0 auto;
}
.main__top {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.main__top h1 {
  color: #FFFFFF;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 900;
  text-wrap: balance;
}
@media (max-height: 720px) {
  .main__top h1 {
    font-size: 1.2rem;
  }
}
.main__content {
  position: relative;
  padding-top: 20px;
}
.main__content img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main__date {
  max-width: 100%;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px;
  background: #FFFFFF;
  color: #000000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 100px;
}
.main__bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.main__bottom span {
  color: #FFFFFF;
}
.main__link {
  color: #FFFFFF;
  width: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #761B86 0%, #B22AC9 100%);
  text-align: center;
  text-decoration: none;
  padding: 20px 20px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
@media (max-height: 720px) {
  .main__link {
    padding: 10px 10px;
    font-size: 20px;
  }
}
.main__back {
  color: #FFFFFF;
  text-decoration: none;
  padding: 5px 15px;
  border: 1px solid #FFFFFF;
  border-radius: 20px;
}

.footer {
  padding: 20px 0 10px;
  position: relative;
}
.footer__container {
  max-width: 380px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  z-index: 3;
}
.footer__container p {
  color: #FFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer__container p a {
  color: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}/*# sourceMappingURL=style.css.map */