* {
  margin: 0;
  padding: 0;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: "Inter", "Arial", sans-serif;
}

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

a:hover {
  opacity: 0.8;
}

body {
  background-image: url("../img/background_1.jpg");
  background-size: cover;
  background-position-x: center;
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.viewport {
  margin: 40px 0;
}
.viewport .logo {
  margin: 40px 0 0 40px;
}
.viewport .content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1120px;
  height: 210px;
  margin: 0 auto;
  background-image: url("../img/text_1.png");
  background-size: contain;
  background-position-x: center;
  background-position-y: bottom;
  background-repeat: no-repeat;
}
.viewport .footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.viewport .footer .download {
  max-width: 460px;
}
.viewport .footer p {
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  body {
    background-image: url("../img/background_2.png");
  }
  .viewport .logo {
    text-align: center;
    margin: 40px auto 0;
  }
  .viewport .logo img {
    max-width: 30%;
  }
  .viewport .content {
    top: 42%;
    max-width: 80%;
    background-image: url("../img/text_2.png");
  }
  .viewport .footer {
    bottom: 30px;
  }
  .viewport .footer .download {
    max-width: 300px;
  }
}