:root {
  /* === COMMON ========================================================== */

  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
  }

  ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  font-family: "Gotham-Medium", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;

  box-sizing: border-box;
}

body {
  color: white;
  background-color: #101010;
  width: 100vw;
  height: 100vh;

  margin: 0;
  padding: 0;

  scroll-behavior: smooth;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

@media screen and (width < 600px) {
  logo-3d {
    scale: 0.4;
  }
}

@media screen and (width >= 600px) {
  logo-3d {
    scale: 1;
  }
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
