@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");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #1d1d1d;
  color: #868686;
}

.tt_container {
  width: 80%;
  max-width: 1100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.tt_container h3 {
  background: -webkit-linear-gradient(left, #7e47f6, #fc2b00);
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tt_container p {
  text-align: center;
}

.tt_container button {
  border: 0;
  background: -webkit-linear-gradient(50deg, #7e47f6, #fc2b00);
  padding: 10px 35px;
  border-radius: 4px;
  font-size: 16px;
  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;
  outline: 0;
  margin: 30px auto;
  color: #FFF;
  cursor: pointer;
}

.tt_container button i {
  margin-right: 6px;
}
/*# sourceMappingURL=styles.css.map */