@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
body {
  background: url("../img/bg.png");
  height: 100vh;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-size: cover;
  font-family: 'Roboto', sans-serif;
}

body .content {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}

body .content .logo {
  width: auto;
  height: 250px;
  margin: auto auto 75px auto;
}

body .content .cta {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: black;
  background: #fed700;
  border: 2px solid #fed700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 8px 24px;
  border-radius: 35px;
  -webkit-transition: 250ms;
  transition: 250ms;
  text-decoration: none;
}

body .content .cta span {
  font-weight: 800;
}

body .content .cta:hover {
  color: #fed700;
  background: black;
}

body .content .texto-maior {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto auto 20px auto;
}

body .content .texto-maior span {
  font-weight: 700;
}

body .content .texto-maior i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -ms-flex-item-align: center;
      align-self: center;
  margin-left: 12px;
  color: #fed700;
  font-size: 28px;
}

body .content .texto-menor {
  font-size: 12px;
  font-weight: 400;
  margin-top: 55px;
  margin-bottom: 0;
}

body .content .texto-menor span {
  font-weight: 800;
  font-size: 16px;
}

body .content .texto-maior, body .content .texto-menor {
  color: white;
}
/*# sourceMappingURL=main.css.map */