html,
body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  font-family: "Helvetica Neue", arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

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

* {
  box-sizing: border-box;
  color: #fafafa;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

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

#root {
  background: transparent;
}

.App {
  position: relative;
  overflow: hidden;
  width: 1080px;
  height: 620px;
  max-height: 720px;
  max-width: 1280px;
  overflow-y: hidden;
  background: transparent;
}

.wrapper {
  width: 1280px;
}

.black-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
}

.logo {
  position: absolute;
  top: 35px;
  right: 40px;
  height: 80px;
  width: auto;
  z-index: 9999;
}

.key-debugger {
  position: absolute;
  bottom: 50px;
  right: 50px;
}

.key-debugger h1 {
  font-size: 200px;
  color: white;
  opacity: 0.6;
  text-align: right;
}

.key-debugger-show {
  opacity: 1;
  transition: all 0.5s linear;
}

.key-debugger-hide {
  opacity: 0;
  transition: all 0.5s linear 3s;
}
