@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir-Heavy.ttf");
  font-weight: 800;
}

html {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Avenir', sans-serif;
}

*,
*::before,
*::after {
  -moz-box-sizing: inherit;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

img {
  max-width: 100%;
}

.btn {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: none;
  box-shadow: none;
  border: 0;
  appearance: none;
  cursor: pointer;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.page {
  background: linear-gradient(188.99deg, rgb(136 246 249 / 80%) 7.36%, rgb(227 156 156 / 80%) 96.68%), url('../img/background-space.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.main {
  min-height: 90vh;
}

.inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 12px 16px 12px;
}

.inner__logo {
  margin-bottom: 30px;
  max-width: 150px;
}

.inner__heading {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  color: #FFFFFF;
}

.inner__subheading {
  margin-bottom: 50px;
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
  color: #FFFFFF;
}

.inner__heading-3 {
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  color: #FFFFFF;
}

.strong {
  font-weight: 800;
}

.signs__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 9px;
  grid-row-gap: 9px;
}

.signs__button {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  row-gap: 5px;
  padding-bottom: 4px;
  width: 68px;
  height: 68px;
  background: linear-gradient(
    180deg,
    rgba(255, 180, 200, 0.85) 1.56%,
    rgba(150, 200, 255, 0.85) 100%
  ),
  url('../img/stars.svg') center 20% / auto no-repeat;;
  border-radius: 10px;
}

.signs__button:hover {
  background: linear-gradient(
    180deg,
    rgba(255, 150, 180, 0.9) 1.56%,
    rgba(120, 180, 255, 0.9) 100%
  ),
  url('../img/stars.svg') center 20% / auto no-repeat;;
}

.signs__caption {
  font-size: 10px;
  font-weight: 500;
  line-height: 11px;
  letter-spacing: 0em;
  text-align: center;
  color: #392139;
}

.svg-wrap {
  position: relative;
  top: 6px;
}

.btn-accept {
  background-color: #48209d;
  color: #FFFFFF;
}

.btn-accept:hover, .btn-cansel:hover {
  background-color: #48209d6e;
}

.btn-cansel:hover {
  color: #FFFFFF;
}

.btn-cansel {
  background-color: #FFFFFF;
  color: #48209d;
}

.slide-up {
  -webkit-animation: slide-up 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-up 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-up {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-up {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.footer {
  padding: 100px 16px 16px 16px;
  width: 100%;
  background: white;
}

.footer-links {
  display: flex;
  justify-content: center;
}

.footer-link {
  padding: 0 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0em;
  text-align: left;
  color: #1E1E1E;
  transition: all .2s ease;
}

.footer-link:not(:last-child) {
  border-right: 1px solid #1E1E1E;
}

.footer-link:hover {
  color: #48209d;
  text-decoration: underline;
}

@media (min-width: 480px) {
  .container {
    max-width: 600px;
  }

  .inner {
    padding: 40px 24px 32px 24px;
  }

  .inner__logo {
    margin-bottom: 30px;
    max-width: 240px;
  }

  .inner__heading-2 {
    font-size: 18px;
  }

  .inner__heading-3 {
    font-size: 18px;
  }

  .signs__button {
    width: 80px;
    height: 80px;
    padding-bottom: 8px;
  }

  .signs__caption {
    font-size: 16px;
  }
}

@media (min-width: 700px) {
  .main {
    min-height: 83vh;
  }
}

@media (min-width: 1080px) {
  .main {
    min-height: 75vh;
  }
}