/* @font-face {
  font-family: "GT Standard";
  src: url("./audio-vis-assets/GT-Standard-VF-Trial.woff2")
    format("woff2-variations");
  font-weight: 300 900;
  font-stretch: 0% 150%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PPSupplyMono";
  src: url("./audio-vis-assets/PPSupplyMono-Regular.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

/* body {
  overflow: hidden;
  background: #ffffff;
  font-family: "PPSupplyMono", monospace;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
} */



/* button {
  background: none;
  color: rgb(14, 14, 14);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
} */

/* button:hover {
  opacity: 0.7;
} */
/* 
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
} */



#container {
  position: relative;
  /* width: 100vw; */
  /* height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  max-width: 100%;
  overflow: hidden; 
}

#controls {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 100;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

#controls:hover {
  opacity: 1;
}


canvas {
  /* display: block; */
  /* width:100%; */
  /* height: auto; */
  /* max-width: 100%; */
  display: block;
  width: 100% ;
  height: auto !important;
  align-items: center;

}

.tp-dfwv {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 1000 !important;
  display: none !important;
  transition: opacity 0.3s ease !important;
}

.tp-dfwv.visible {
  display: block !important;
}

.info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  z-index: 1000;
  line-height: 1.4;
  opacity: 0.8;
}

.info a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-bottom-color 0.2s ease;
}

.info a:hover {
  border-bottom-color: white;
}

.credit {
  margin-top: 4px;
  opacity: 0.6;
  font-size: 11px;
}

.help-hint {
  /* position: absolute; */
  top: 20px;
  right: 20px;
  color: #9E9E9E;
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.5;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.help-hint.hidden {
  opacity: 0;
}

@media (max-width: 768px) {
  .info {
    font-size: 10px;
    bottom: 10px;
  }

  #controls {
    top: 10px;
    left: 10px;
  }

  .help-hint {
    top: 10px;
    right: 10px;
    font-size: 10px;
  }
}



figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:active,
a:hover {
  outline-width: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
dfn {
  font-style: italic;
}
mark {
  background-color: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Removes play-button */
audio::-webkit-media-controls-play-button {
  display: none !important;; 
}



 audio {
    width: 100%;
    min-width: 280px;
  }

  audio::-webkit-media-controls-timeline {
    display: inline;
  }

  audio::-webkit-media-controls-current-time-display {
    display: flex;
  }

