/* setup */
@import url("./setup/reset.css");
@import url("./setup/fonts.css");

body {
  padding-top: 74px;
  background: url("../assets/img/bg.png") center center/cover no-repeat;
  font-family: "Avenir";
}

.header {
  margin-bottom: 59px;
}

.header img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
}

.container {
  display: block;
  max-width: 1100px;
  margin: 0 auto 200px;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 26px;
  position: relative;
  height: 189px;
}

.footer__links {
  display: block;
  position: relative;
  z-index: 5;
}

.footer__link {
  font-family: "Avenir";
  font-weight: 400;
  font-size: 14px;
  line-height: 12px;
  text-decoration: none;
  color: #1e1e1e;
}

.footer__bg {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (max-width: 1100px) {
  body {
    padding-top: 64px;
  }

  .header {
    margin-bottom: 48px;
  }

  .container {
    padding: 0 30px;
  }
}

@media (max-width: 720px) {
  body {
    background: url("../assets/img/bg-mobile.png") center center/cover no-repeat;
  }

  .container {
    margin: 0 auto 150px;
  }

  .header img {
    width: 250px;
  }

  .footer__link {
    font-size: 12px;
  }
}
