@font-face {
  font-family: stormfaze;
  /* src: url(res/fonts/stormfaze.ttf), */
  src: url(../../stormfaze/assets/stormfaze.BfatcSa2.ttf);
  /* url(..res/fonts/stormfaze.ttf); */
}

html::-webkit-scrollbar-track {
  background: #1a1a1a;
}

html::-webkit-scrollbar-thumb {
  background: #444;
  border: 2px solid #1a1a1a;
}

html::-webkit-scrollbar-thumb:hover {
  background: #777;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #444 #1a1a1a;
}


html,
body,
#root {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background: rgb(0, 0, 0);
  color: rgb(197, 197, 197);
  font-family: stormfaze;
  font-size: calc(12px + 0.5vw);
}

a {
  text-decoration: none;
  color: lime;
}

canvas {
  display: block;
}

h2, h3,
h4 {
  padding: 1px 1px 1px 1px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: default;
  font-family: stormfaze;
  color: #00ff00;
  text-shadow:
    0 0 2px #00ff00,
    0 0 4px #00ff00,
    0 0 6px #00ff00,
    0 0 8px #00ff00;
  -webkit-text-stroke: 0.5px black;
  letter-spacing: 0.05em;
}

button {
  background: #9d9d9d;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: default;
  font-family: stormfaze;
  color: #000000;
  text-shadow: 0 0 2px #b4b1b1, 0 0 4px #ffffff, 0 0 6px #bdbdbd, 0 0 8px #ffffff;
  -webkit-text-stroke: 0.5px black;
  letter-spacing: 0.05em;
}

p {
  padding: 0;
  margin: 0;
}

.no-select {
  user-select: none;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
}

iframe {
  width: 100%;
  height: 768px;
  border: 1px solid #ccc;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}