/* src/styles.scss */
@font-face {
  font-family: Roboto;
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Roboto-Thin.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 100;
  font-style: italic;
  font-display: swap;
  src: url(/fonts/Roboto-ThinItalic.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Roboto-Light.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  src: url(/fonts/Roboto-LightItalic.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Roboto-Regular.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url(/fonts/Roboto-Italic.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Roboto-Medium.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url(/fonts/Roboto-MediumItalic.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Roboto-Bold.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url(/fonts/Roboto-BoldItalic.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Roboto-Black.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 900;
  font-style: italic;
  font-display: swap;
  src: url(/fonts/Roboto-BlackItalic.ttf) format("truetype");
}
html,
body {
  height: 100%;
}
* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-app-region: no-drag;
}
body {
  margin: 0;
  background-color: rgba(0, 0, 0, 0);
  scrollbar-width: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::-webkit-scrollbar {
  display: none;
}
button {
  font-family: inherit;
  border: none;
  outline: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  padding: 0;
  text-align: inherit;
  cursor: pointer;
}
button:focus,
button:active,
button:hover {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
}
body.ambient-light-animation:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 1000;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      var(--ambient-light-animation-color, red) 0%,
      rgba(255, 0, 0, 0) 100%);
  animation: ambient-light-animation 0.4s ease-out;
  will-change: height;
}
@keyframes ambient-light-animation {
  0% {
    height: 20%;
  }
  100% {
    height: 0;
  }
}

/* projects/real-sports/src/styles.scss */
@font-face {
  font-family: "IBM Plex Mono";
  font-weight: 400;
  font-style: normal;
  src: url(/fonts/IBMPlexMono-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Tungsten-bold";
  font-weight: bold;
  font-style: normal;
  src: url(/fonts/Tungsten-Bold.otf) format("opentype");
}
@font-face {
  font-family: "Lato";
  font-weight: 400;
  font-style: normal;
  src: url(/fonts/Lato-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Countach";
  font-weight: 700;
  font-style: normal;
  src: url(/fonts/Countach-Bold.otf) format("opentype");
}
:root {
  --rs-black: #121212;
  --rs-grey: #888684;
  --rs-grey-dark: #4B4B4B;
  --rs-white: #FFF9F5;
  --tab-bar-height: 171px;
  --tab-bar-show-duration: 0.5s;
  --tab-bar-show-delay: 0s;
  --tab-bar-show-timingfunction: cubic-bezier(0.57, 0.23, 0.08, 0.96);
  --tab-bar-hide-duration: var(--tab-bar-show-duration);
  --tab-bar-hide-timingfunction: var(--tab-bar-show-timingfunction);
  --tab-bar-hide-delay: 1s;
  --page-height: calc(100vh - var(--tab-bar-height));
  --page-header-height: 86px;
  --page-content-height: calc(var(--page-height) - var(--page-header-height));
}
* {
  box-sizing: border-box;
}
html {
  overflow: hidden;
}
body {
  font-family: "IBM Plex Mono", sans-serif;
}
.page {
  display: block;
  position: relative;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  max-height: var(--page-height);
}
@keyframes button-icon-zooming {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes button-zooming {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
