html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
  font-size: 20px;
  margin: 0;
  padding: 0;
}

body {
  background: url(/images/topo-bg.jpg) #f7f9fd fixed;
  background-size: cover;
  color: #555f67;
  line-height: 1.2;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body {
    background: #f7f9fd !important;
  }
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  height: 100vh;
}

header.logo-morelink {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 25px 50px 50px 50px;
  gap: 15px;
}

.logo {
  height: 60px;
}

.cta-button {
  background-color: #3dc6f3;
  padding: 0.8rem 1.5rem;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  display: inline-block;
  width: fit-content;
}

.content {
  flex: 1;
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.content-middle {
  position: relative;
  max-width: 1200px;
  margin: 0px auto;
}

.qr-code-container {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 35px;
  right: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.qr-code-circle {
  position: absolute;
  height: 300px;
  animation: spin 15s linear infinite;
}

.qr-code {
  width: 150px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.content h1 {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 6rem;
  line-height: 1;
  color: #3a3d4d;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.4rem;
  line-height: 1.4;
  width: 75%;
  margin-bottom: 1rem;
}

.copyright-appstores {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 50px;
  gap: 15px;
}

.appstores {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  height: 40px;
}

.appstores img {
  height: 40px;
  display: block;
}

@media only screen and (max-width: 1300px) {
  .content-middle {
    max-width: 900px;
  }
  .content h1 {
    font-size: 5rem;
  }
  .qr-code-container {
    width: 275px;
    height: 275px;
  }
  .qr-code-circle {
    height: 275px;
  }
}

@media only screen and (max-width: 1000px) {
  .content-middle {
    max-width: 750px;
  }
  .content h1 {
    font-size: 4rem;
  }
  .logo {
    height: 40px;
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .qr-code-container {
    width: 225px;
    height: 225px;
    top: 25px;
    right: 25px;
  }
  .qr-code-circle {
    height: 225px;
  }
  .qr-code {
    width: 115px;
  }
}

@media only screen and (max-width: 800px) {
  .content-middle {
    max-width: 600px;
  }
  header.logo-morelink {
    padding: 15px 25px 25px 25px;
  }
  .content,
  .copyright-appstores {
    padding: 25px;
  }
  .content p {
    width: 100%;
  }
  .content h1 {
    font-size: 3.5rem;
  }
  .content p {
    font-size: 1rem;
  }
  .qr-code-container {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .logo {
    height: 30px;
  }
  .cta-button {
    font-size: 12px;
  }
  .cta-button span {
    display: none;
  }
  .content-middle {
    max-width: 300px;
  }
  .content h1 {
    font-size: 1.9rem;
  }
  .copyright-appstores {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .copyright {
    order: 2;
  }
  .appstores {
    order: 1;
  }
}
