@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");
*,
::after,
::before {
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.main-wrap {
  background-image: url(../img/stop-ng-lg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  background-position: center center;
  display: flex;
  /*align-items: center;*/
  justify-content: center;
  padding-top: 45px;
}
.chat-btn {
  background: #ff885a;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.3px;
  padding: 6px 18px;
}
.inner-wrap {
  text-align: center;
  padding: 20px 15px;
  max-width: 270px;
}
.inner-wrap h2 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin: 0 0 11px 0;
}
.inner-wrap p {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  letter-spacing: -0.3px;
  color: #ffffff;
  margin-top: 0;
}
.inner-wrap small {
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  letter-spacing: -0.3px;
  color: #ffffff;
  display: flex;
  margin-bottom: 14px;
  transition: all 0.5s;
}
.chat-btn:hover {
  background: #fb966f;
}
@media (max-width: 767.98px) {
  .main-wrap {
    background-image: url(../img/Stop-Jeu-BG.svg);
  }
}
