@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: #00B48C;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

header, footer {
  flex: 0 0 auto;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.header {
  padding-top: 11px;
  position: relative;
  padding-bottom: 20px;
}
.header__container {
  display: flex;
  justify-content: center;
  position: relative;
  padding-top: 20px;
}
.header__danger {
  position: absolute;
  left: 0;
  top: 0;
}

.main {
  background: url("../image/bg3_bg.png") no-repeat center;
  background-size: contain;
}
.main__content {
  height: 100%;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
.main__content img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 90%;
}
@media (max-height: 827px) {
  .main__content img {
    max-height: 260px;
  }
}
.main__title {
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.main__normal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.main__agree {
  display: none;
}
.main__agree .main__button {
  background: #652D86;
}
.main__price {
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.main__price::before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(185, 185, 185, 0.69);
  filter: blur(0.5rem);
}
.main__price span {
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 3px #9c9c9c;
  font-size: 14px;
}
.main__button {
  color: #FFFFFF;
  background: #652D86;
  border: none;
  text-align: center;
  padding: 23px 23px;
  border-radius: 5px;
  box-shadow: 0 5px 25px #333333;
  font-size: 24px;
  max-width: 300px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

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