main {
  min-height: 100vh;
  width: 100%;
  background-image: url("/imagens/background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 44px;
}

main .content header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main .content header .title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main .content header .title-container h1 a {
  display: block;
  font-size: 56px;
  max-width: 450px;
  line-height: 58px;
  text-align: center;
  color: var(--color-primary);
  animation: 1s pulse infinite;
}

main .content header .title-container strong {
  font-size: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: var(--color-secondary);
}

main .content header .title-container strong span {
  font-size: 22px;
  line-height: 22px;
}

main .content {
  display: flex;
  flex-direction: column;
}

main .content .imageContainer {
  align-self: center;
  margin-top: -240px;
}

main .content .imageContainer img {
  max-width: 800px;
  width: 100%;
  max-height: 700px;
}

main .content footer {
  margin-top: -100px;
  display: flex;
  flex-direction: column;
  margin-top: -280px;
}

footer .info {
  align-self: flex-end;
}

footer .info span {
  text-align: center;
  font-size: 22px;
  color: var(--color-secondary);
  line-height: 22px;
}

footer .info strong {
  font-size: 24px;
  text-align: center;
  color: var(--color-primary);
  margin: 8px 0;
}

main .content footer .bottom {
  display: flex;
  margin-top: 32px;
  align-items: center;
  justify-content: space-between;

}

main .content footer .bottom p {
  color: #73808D;
  max-width: 950px;
}

@media(max-width: 1600px) {
  main {
    height: 100%;
    min-height: 100vh;
  }

  main .content header {
    justify-content: space-around;
  }

  main .content header .title-container h1 {
    font-size: 34px;
    max-width: 300px;
    line-height: 36px;
  }

  main .content header .title-container strong {
    font-size: 22px;
  }

  main .content header .title-container strong span {
    font-size: 18px;
  }

  main .content header .logo-container img {
    max-width: 300px;
  }

  main .content .imageContainer {
    margin-top: 0px;
  }

  main .content footer {
    margin-top: -40px;
  }

  footer .info {
    align-self: center;
  }
}

@media(max-width: 1250px) {
  main {
    background-image: url("/imagens/background_mobile.png");
    padding: 2.2rem;
  }

  main .content .imageContainer {
    margin-top: 16px;
  }


  main .content footer {
    margin-top: -40px;
  }
}

@media(max-width: 700px) {
  main .content header {
    flex-direction: column;
  }

  main .content header .title-container h1 a {
    font-size: 44px;
    line-height: 48px;
  }

  main .content header .logo-container {
    margin-bottom: 16px;
  }

  main .content header .logo-container img {
    max-width: 150px;
  }

  main .content footer .bottom {
    flex-direction: column;
  }

  main .content footer .bottom p {
    text-align: center;
    margin-bottom: 1.2rem;
  }

  main .content footer .bottom .qrcode-container img {
    max-width: 100%;
  }

  main .content footer .bottom .qrcode-container img {
    max-width: 300px;
  }

  main .content footer {
    margin-top: 0;
  }
}

@media(max-width: 400px) {
  main {
    padding: 12px;
  }

  main .content footer .info strong,
  main .content footer .info span {
    font-size: 12px;
  }
}

@media(max-width: 350px) {
  main {
    padding: 0.8px;
  }

  main .content footer .info strong,
  main .content footer .info span {
    font-size: 10px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(90%);
  }

  50% {
    transform: scale(100%);
  }

  100% {
    transform: scale(90%);
  }
}