a {
  text-decoration: none;
}

.textAnimationClass {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.textAnimationClassNav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.textAnimationClassContainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  opacity: 0;
}

.absolute {
  position: absolute;
}

/* Fonts */
@font-face {
  font-family: EurostileExtd;
  src: url("./fonts/Eurostile-Extended-Black.woff");
}
@font-face {
  font-family: Jim;
  src: url("./fonts/deadjim.woff");
}
@font-face {
  font-family: Inter;
  src: url("./fonts/Inter-VariableFont_opsz,wght.ttf");
}
/* No Select */
.noselect,
img {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome, Edge, Opera and Firefox */
}

.invisible {
  opacity: 0 !important;
  pointer-events: none !important;
}

* {
  -webkit-tap-highlight-color: transparent;
}

*::-moz-selection {
  background-color: transparent;
  text-shadow: none;
}

*::selection {
  background-color: transparent;
  text-shadow: none;
}

/* width */
/* Track */
/* Handle */
/* Defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  width: 100%;
  height: 100svh;
  overflow-x: hidden;
  overflow-y: scroll;
  /* cursor: none; */
  overscroll-behavior-y: contain;
  background-color: black;
}

body {
  z-index: 100;
  box-sizing: border-box;
  width: 100%;
  font-size: 10px;
}

main {
  position: relative;
  z-index: 1;
}

.testSection {
  position: relative;
  width: 100%;
  height: 0vh;
}

.pingpongSection {
  position: relative;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-block: 10rem;
}

.pingpongHeader {
  color: #ffffff;
  font-size: 6rem;
  font-family: Jim;
}

.pingpongSubHeader {
  color: #ffffff;
  font-size: 2.4rem;
  font-family: Inter;
  padding-block: 3rem;
}

.pingpongContainer {
  position: relative;
  width: 100vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-block: 5rem;
}

.pingpongAssetsContainer {
  position: relative;
  width: 40%;
  aspect-ratio: 1.7777777778;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.pingpongAsset {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.pingpongSectionText {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
}

.pingpongSectionTextName {
  position: relative;
  font-size: 3.6rem;
  color: #ffffff;
  font-family: Jim;
  padding-block: 3rem;
}

.pingpongSectionTextDescription {
  position: relative;
  font-size: 2rem;
  color: #ffffff;
  font-family: Inter;
  width: min(100rem, 90vw);
  text-align: center;
}

.pingpongDataName {
  display: none;
}

.pingpongDataDescription {
  display: none;
}

/* Responsive */
@media screen and (max-width: 1800px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 8px;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 7px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 7px;
  }
}
@media screen and (max-width: 765px) {
  html {
    font-size: 6px;
  }
  .videoViewerSection {
    margin-bottom: 25rem;
  }
}
.instructionsSection {
  position: relative;
  width: 100vw;
}

.instructionsImage {
  width: 100%;
}

.pingpongSectionTextButton {
  color: #ffffff;
  border: 1px solid #ffffff;
  margin-top: 3rem;
  padding-block: 2rem;
  padding-inline: 4rem;
  font-size: 2rem;
  cursor: pointer;
  font-family: Jim;
}/*# sourceMappingURL=videoViewer.css.map */