@font-face {
  font-family: "Righteous";
  src: url("https://static.zypher.game/fonts/Righteous/Righteous-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("https://static.zypher.game/fonts/Poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Poppins";
  src: url("https://static.zypher.game/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Poppins";
  src: url("https://static.zypher.game/fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Poppins";
  src: url("https://static.zypher.game/fonts/Poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
}

html {
  background-color: #000;
  color: #fff;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  font-family: "Poppins", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: 400;
  font-family: "Righteous", "Poppins", Arial, sans-serif;
  /* visibility: hidden; */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

input,
select,
textarea {
  color: #fff;
  font-size: 100%;
}

button {
  cursor: pointer;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: inherit;
}

fieldset,
img {
  border: 0;
}

iframe {
  display: none;
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

del {
  text-decoration: line-through;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: "";
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

i {
  font-style: normal;
}

ins,
a {
  text-decoration: none;
}

.fn-clear {
  zoom: 1;
}

.fn-clear:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

body [data-reach-dialog-overlay] {
  z-index: 9999;
  background: hsla(0, 0%, 0%, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

body .ant-notification {
  z-index: 999999;
}

#rootLoading {
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
}

#rootLoading img {
  animation-name: fade-in-out;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes fade-in-out {
  0% {
    opacity: 0.7;
  }

  8%,
  12%,
  16% {
    opacity: 0.7;
  }

  10%,
  14% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 0.5;
  }
}

@media screen and (max-width: 768px) {
  #rootLoading {
    img {
      transform: scale(0.7);
    }
  }
}