@font-face {
  font-family: "Arcade Interlaced";
  src:
    url("../font/ArcadeInterlaced.woff2") format("woff2"),
    url("../font/ArcadeInterlaced.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arcade Normal";
  src:
    url("../font/ArcadeNormal.woff2") format("woff2"),
    url("../font/ArcadeNormal.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arcade Rounded";
  src:
    url("../font/ArcadeRounded.woff2") format("woff2"),
    url("../font/ArcadeRounded.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --main: #0dafe0;

  --background: #0a2c36;
}

.deco-machine {
  pointer-events: none;
  position: fixed;
  bottom: 0%;
  width: 110%;
  max-width: 624px;
  height: auto;
  z-index: 30;

  animation: DecoOscillate 10s ease infinite;
}

@keyframes DecoOscillate {
  0%,
  100% {
    bottom: 0%;
  }
  50% {
    bottom: -2%;
  }
}

body {
  background-color: var(--background);
}

.content-wrapper {
  padding: 40px;
}

body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;

  box-shadow: inset 0px 0px 30px 20px #041b24;

  opacity: 1;

  animation: ScreenGlow 0.3s ease infinite;
}

@keyframes ScreenGlow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.page-header {
  padding: 0px;
  margin-bottom: 0px;

  h1 {
    font-family: "Arcade Interlaced";
    font-weight: normal;
    color: var(--main);

    animation: BlinkFont 3s infinite;

    text-shadow: 0px 0px 5px var(--main);
  }
}

@keyframes BlinkFont {
  0%,
  5% {
    font-family: "Arcade Rounded";
  }
  6%,
  100% {
    font-family: "Arcade Interlaced";
  }
}

.breadcrumb {
  font-family: "Arcade Interlaced";
  a {
    text-decoration: none;
    color: var(--main);
  }
  a:hover {
    background-color: #37505a;
  }

  span {
    color: #0a82b1;
  }

  p {
    color: #37505a;

    b {
      background-color: var(--main);
      animation: FakeCaret 1.7s ease infinite;
    }
  }
}

@keyframes FakeCaret {
  0%,
  50% {
    background-color: var(--main);
    color: black;
  }
  51%,
  99% {
    color: #37505a;
    background-color: transparent;
  }
}

.container {
  padding-left: 50px;
  padding-right: 50px;
}

.text-defil {
  display: flex;
  text-wrap: nowrap;
  overflow: hidden;
  white-space-collapse: break-spaces;

  margin-bottom: 20px;

  font-family: "Arcade Interlaced";
  color: var(--main);
}

.apps-wrapper {
  border-top: 2px solid var(--main);
  font-family: "Arcade Interlaced";

  a {
    text-decoration: none;
  }

  .list-entry {
    display: flex;
    gap: 15px;
    border: 2px solid var(--main);
    border-top: none;

    box-shadow: 0px 0px 3px 0px var(--main);
    padding: 10px 15px 10px 15px;

    color: var(--main);
    p {
      font-size: 12px;
    }

    .app-image {
      display: flex;
      aspect-ratio: 1/1;
      background-color: var(--main);

      height: fit-content;
      flex-grow: 1;
      flex-shrink: 0;
      flex-basis: 7%;
      align-self: center;
      min-width: 60px;
    }

    .app-text {
      min-width: 0px;
      flex-shrink: 1;
      flex-grow: 0;
    }
  }

  .list-entry:hover {
    background-color: var(--main);
    color: var(--background);

    box-shadow: 0px 0px 6px 1px var(--main);

    .app-image {
      background-color: var(--background);
    }
  }
}

@media (max-width: 768px) {
  .page-header {
    h1 {
      font-size: 8.5vw;
    }
  }

  .content-wrapper {
    padding: 20px;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
