@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@1,400;1,700&display=swap');
body {
  font-family: 'Arimo', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: rgb(25, 47, 107);
  margin: 0;
}

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

.container {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
  padding: 0 16px;
}
/* header */

.header {
  width: 100%;
  background-color: rgb(98, 15, 15);
}
.header__inner {
  width: 100%;
  padding: 24px 0;
  position: relative;
  z-index: 1;
}
.header__title {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
}
.header__icon {
  display: inline-block;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 27px);
  z-index: 1;
}
.header__icon > svg {
  display: block;
}

/* Main */

.main {
  width: 100%;
}
.main__inner {
  padding: 50px 0;
}
.main__title {
  font-size: 30px;
}
.main__img-link {
  display: block;
  max-width: 100%;
  margin-bottom: 50px;
}
.main__img {
  width: 100%;
}
.main__text {
  font-size: 22px;
}
.main__button-wrapper {
  display: block;
  text-align: center;
  margin-top: 50px;
}
.main__button {
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  background-color: #fff;
  color: #000;
  font-size: 26px;
  padding: 20px 30px;
  transition: all ease 0.1s;
}
.main__button:hover {
  background-color: rgb(207, 207, 207);
}
.description {
  text-align: center;
  max-width: 350px;
  font-style: italic;
  font-size: 15px;
  color: rgb(216, 216, 216);
  margin: 30px auto 0;
}

/* Footer */

.footer {
  background-color: #fff;
}
.footer__inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 30px 0;
}
.footer__logo {
  display: block;
  width: 350px;
  margin: 0 auto;
}
.footer__links {
  text-align: center;
  margin: 30px 0 20px;
}
.footer__link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 0 20px;
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__text {
  text-align: center;
  color: #000;
}

@media(max-width: 559px){
    .main__title{
        font-size: 26px;
    }
    .main__text {
        font-size: 20px;
    }
    .footer__logo{
        width: 250px;
    }
}
@media(max-width: 449px){
    .header__inner{
        padding: 15px 0;
    }
    .main__title{
        font-size: 24px;
    }
    .main__img-link{
        margin-bottom: 25px;
    }
    .main__text {
        line-height: 1.3;
        font-size: 16px;
    }
    .main__button{
        font-size: 20px;
    }
    .footer__logo{
        width: 200px;
    }
    .footer__links{
        margin: 18px 0 15px;
    }
}
@media(max-width: 359px){
    .main__title{
        text-align: center;
        font-size: 24px;
        line-height: 1.4;
    }
    .main__img-link{
        margin-bottom: 25px;
    }
    .main__text {
        font-size: 16px;
    }
    .main__button{
        font-size: 20px;
    }
    .footer__logo{
        width: 200px;
    }
    .footer__link{
        margin: 0 10px;
    }
    .footer__text{
        font-size: 13px;
    }
}