@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html,
body {
  font-family: "Poppins", sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main.main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #0f172b;
  padding: 20px;
}

main.main .container {
  color: white;
  max-width: 948px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

main.main .container .logo {
  margin-bottom: 60px;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

main.main .container .description {
  color: white;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 30px;
}

main.main .container a {
  text-decoration: none;
  color: white;
}

main.main .container a:hover {
  text-decoration: underline;
}

footer.footer {
  display: block;
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

footer.footer p.text {
  color: white;
  font-size: 16px;
}

/* ========================= */
/* RESPONSIVIDADE */
/* ========================= */

@media (max-width: 768px) {
  main.main .container .description {
    font-size: 20px;
  }

  footer.footer p.text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  main.main {
    padding: 15px;
  }

  main.main .container .description {
    font-size: 18px;
  }

  main.main .container .logo {
    max-width: 180px;
    margin-bottom: 40px;
  }

  footer.footer {
    bottom: 15px;
  }

  footer.footer p.text {
    font-size: 12px;
  }
}
