@font-face {
  font-family: "Roboto";
  src: url("roboto-variable.ttf") format("truetype-variations");
  font-weight: 400 900;
}
@font-face {
  font-family: "Roboto";
  src: url("roboto-variable-italic.ttf") format("truetype-variations");
  font-weight: 400 900;
  font-style: italic;
}

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

html,
body {
  min-height: 100vh;
}

html {
  font-family: Roboto, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  position: relative;
}

img {
  height: auto;
  width: 100%;
}

.site-wrapper:before {
  background: rgba(35, 31, 32, 93%);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.bkg {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.bkg img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.inner-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 85px);
  padding: 50px 20px 76px;
  position: relative;
  z-index: 2;
}

.hero {
  margin-bottom: 60px;
  text-align: center;
}

.hero img {
    max-width: 532px;
    width: 35vw;
    object-fit: contain;
    min-width: 300px;
}

main {
  margin-inline: auto;
  max-width: 838px;
  text-align: center;
}

main h1 {
  color: #fff;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 26px;
  text-transform: uppercase;
}

main p {
  color: #fff;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 1px;
  max-width: 740px;
  text-transform: uppercase;
}

.add-logo {
  margin-top: 75px;
  max-width: 415px;
}

footer {
  align-items: center;
  background: rgba(07, 07, 07, 73%);
  display: flex;
  height: 60px;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.footer-wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1300px;
  padding-inline: 12px;
  width: 100%;
}

footer p {
  color: #fff;
  font-size: 20px;
  margin: 0;
}

footer a {
  color: #fff;
  display: block;
  text-decoration: none;
}

.social img {
  max-width: 35px;
}

@media (max-width: 1215px) {
    .inner-wrapper {
        padding-bottom: 110px;
    }
  footer {
    height: 84px;
  }

  .footer-wrapper {
    flex-wrap: wrap;
    gap: 8px 30px;
    justify-content: center;
  }

  .footer-wrapper p:first-child {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 730px) {
  .hero {
    margin-bottom: 40px;
  }

  main h1 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  main p {
    font-size: 20px;
    font-weight: 600;
  }

  .inner-wrapper {
    padding-top: 85px;
  }

  .add-logo {
    margin-top: 35px;
    max-width: 340px;
  }

  footer p {
    font-size: 16px;
  }

  .social img {
    max-width: 27px;
    margin-bottom: -5px;
  }
}

@media (max-width: 500px) {
  .inner-wrapper {
    padding-bottom: 170px;
  }

  footer {
    height: 130px;
  }

  .footer-wrapper {
    justify-content: center;
    max-width: 370px;
  }
}
