@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
}

.page {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(/assets/background-img.svg) center / cover no-repeat;
  padding-top: 16px;
}

.header {
  margin-bottom: 80px;
}

.header__logo,
.footer__logo {
  display: block;
}

.main-content {
  width: 90%;
  max-width: 680px;
  min-width: 280px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  margin-bottom: 80px;
  padding: 60px 15px 91px;
}

.main-content__title {
  color: #061178;
  font-size: 26px;
  line-height: 1.846em;
  margin-bottom: 91px;
  text-align: center;
}

.main-content__buttons {
  width: 100%;
  max-width: 450px;
}

.button-link {
  display: block;
  padding: 9px 20px;
  border-radius: 16px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
  background-color: #2F54EB;
  width: 100%;
}

.button-link:first-child {
  margin-bottom: 30px;
}

.button-link:hover {
  background-color: #1e4eb8;
}

@media screen and (max-height: 720px) {
  .header {
    margin-bottom: 40px;
  }
  .main-content {
    margin-bottom: 30px;
    padding: 30px 15px 45px;
  }
  .main-content__title {
    margin-bottom: 45px;
  }
  .button-link:first-child {
    margin-bottom: 15px;
  }
}