:root {
  font-size: 16px;
  font-family: var(--primary-font);
  font-weight: 300;

  --primary-color: black;
  --secondary-color: #05adef;

  --primary-font: sans-serif;
  --secondary-font: "DaimlerCAC", sans-serif;

  --content-width: 1300px;
  --stage-width: 1600px;
}

body {
  background: black;
  color: black;
  margin: 0;
  overflow-x: hidden;
  overflow-y: overlay;
  font-weight: 400;
}

/* Loading Spinner */

body > * {
  transition: opacity 0.75s ease;
}

body:not([loaded]) > * {
  opacity: 0;
}

dt-spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1000;
}

body:not([loaded]) dt-spinner {
  opacity: 1 !important;
}

/* ##### */

/* Page Content */

.page-content {
  background: white;
}

dt-stage {
  background: black;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  margin: 5px 0px;
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #1c1c1c;
}

main {
  position: relative;
  overflow: hidden;
  max-width: 2000px;
  margin: auto;
}

section {
  padding: 0 40px;
  padding: 0 40px;
  max-width: 1300px;
  margin: 100px auto;
  box-sizing: border-box;
}

footer {
  width: 100%;
  padding: 100px 0;
  margin: auto;
  max-width: 1200px;
  box-sizing: border-box;
  text-align: center;
  color: rgb(93, 93, 93);
  font-size: 0.75rem;
}

/* Material Icons */

/* fallback */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(./fonts/Material-Icons.woff2) format("woff2");
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
