@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
body {
  margin: 0;
  padding: 0;
  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: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
  background: #000;
  font-family: 'Poppins', sans-serif;
}

iframe {
  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;
  width: 100vw;
  height: 90vh;
  background: black !important;
}

::-webkit-scrollbar {
  display: none;
}

a {
  margin-top: 20px;
  padding: 0.4em 1em;
  color: white;
  text-decoration: none;
  border-radius: 08px;
  background: #CC0E50;
  border-bottom: 3px solid white;
  border-top: 3px solid white;
  -webkit-transition: cubic-bezier(0.23, 1, 0.32, 1) 1s;
  transition: cubic-bezier(0.23, 1, 0.32, 1) 1s;
}

a:hover {
  background: #325ff1;
  border-bottom: 5px solid white;
  border-top: 5px solid white;
  color: white;
}
/*# sourceMappingURL=style.css.map */