@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 500;
}

body {
  background: url("../../banner.png");
  background-size: cover;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

.container > h3 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.container > p {
  color: #cecece;
  width: 500px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.container > button {
  padding: 8px 30px;
  border-radius: 4px;
  background: #3257d3;
  color: #FFF;
  border: 0;
  margin: 15px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: .15s;
  transition: .15s;
}

.container > button i {
  font-size: 18.5px;
  margin-right: 5px;
  font-weight: 500;
}

.container > button:hover {
  background: #2a4ab4;
}

.cover {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.534);
}

.social {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.social a {
  padding: 10px 12px;
  border-radius: 100%;
  background: #282C34;
  text-align: center;
  width: 4%;
  height: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-decoration: none;
  margin: 10px;
}

.social i {
  font-size: 24px;
  line-height: 0;
  color: #FFF;
}

.social .face {
  background: #3257d3;
}

.social .face:hover i {
  color: #FFF;
}

.social .insta {
  background: #bf41d8;
}

.social .insta:hover i {
  color: #ffffff;
}

.social .whatsapp {
  background: #18af3e;
}

.social .whatsapp:hover i {
  color: #ffffff;
}

.code {
  font-size: 0;
}
/*# sourceMappingURL=styles.css.map */