@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&family=Roboto:wght@400;500;700&display=swap");
html,
body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

.container {
  max-width: 610px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 15px 0;
  background: linear-gradient(180deg, #03b3ff 0%, #122e53 150.88%), #ffffff;
}
.header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Header */
.logo {
  width: 250px;
  max-width: 80%;
  display: block;
}

/* Main */
.main {
  flex: 1 1 auto;
  margin: 40px 0 40px;
  background-color: #ffffff;
}
.title {
  text-transform: uppercase;
  text-align: center;
  font-size: 50px;
  font-weight: 900;
  color: #19266b;
}
.subtitle {
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin: 15px 0;
}

.image-wrapper {
  display: block;
  width: 100%;
  margin: 20px 0 20px;
}
.image {
  width: 100%;
  max-width: 100%;
  display: block;
}
.select__title {
  text-transform: uppercase;
  text-align: center;
  font-size: 26px;
  font-weight: 500;
}
.select__box {
  width: 100%;
  max-width: 500px;
  margin: 30px auto;
  display: flex;
  justify-content: center;
}
.select__box-button {
  width: 100%;
  display: block;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  background: #2274f5;
  box-shadow: inset 0px 4px 9px rgba(255, 255, 255, 0.3),
    inset 0px -4px 9px rgba(0, 0, 0, 0.22);
  border: 1px solid #ffffff;
  border-radius: 55px;
  padding: 15px;
  font-size: 27px;
  font-weight: 900;
  color: #ffffff;
  cursor: pointer;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
}
.select__box-button:hover {
  background: #0e4db3;
}

/* Footer */

.footer {
  width: 100%;
  background: linear-gradient(180deg, #03adf6 -22.56%, #0d2146 142.48%);
}
.footer__inner {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.footer__text {
  font-size: 8px;
  line-height: 1.05;
  color: #fff;
  margin-top: 10px;
}
.footer__links {
  display: flex;
  flex-direction: column;
}
.footer__links-item {
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  text-align: end;
  margin-bottom: 5px;
}
.footer__links-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 500px) {
  .logo {
    max-width: 180px;
  }
  .main {
    flex: 1 1 auto;
    margin: 20px 0 20px;
  }
  .footer__links-item {
    font-size: 14px;
  }
  .footer__text {
    margin-top: 15px;
  }

  .title {
    font-size: 40px;
  }
  .subtitle {
    font-size: 15px;
  }
  .subtitle__image {
    width: 32px;
    height: 32px;
  }
  .select__title {
    font-size: 22px;
  }
  .select__box-button {
    font-size: 23px;
  }
}

@media (max-width: 380px) {
  .title {
    font-size: 32px;
  }
}
