@import url(//cdn.rawgit.com/rtaibah/dubai-font-cdn/master/dubai-font.css);html,
body {
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Dubai-Regular", sans-serif;
  background: #03090f;
  color: white;
}

a {
  text-decoration: none !important;
  color: white !important;
}

.base-button {
  padding: 1rem 2rem;
  text-align: center;
  font-size: 1.4rem;
}

.bordery {
  border-radius: 9999px;
}

.h-rainbow {
  background: -webkit-gradient(linear, left top, right top, from(#0d87fd), to(#ea1437));
  background: linear-gradient(90deg, #0d87fd, #ea1437);
}

.v-rainbow {
  background: -webkit-gradient(linear, left bottom, left top, from(#0d87fd), to(#ea1437));
  background: linear-gradient(0deg, #0d87fd, #ea1437);
}

.rainbow-button {
  box-shadow: 0 0 20px #ea1437;
  background: #ea1437;
}

.rainbow-button:hover {
  box-shadow: 0 0 40px #0d87fd;
  background: -webkit-gradient(linear, left top, right top, from(#0d87fd), to(#ea1437));
  background: linear-gradient(90deg, #0d87fd, #ea1437);
}

