@import url("https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bangers&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee&display=swap");
body {
  background: #000000;
  color: white;
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-family: "Teko";
}

.container1 {
  width: 100%;
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
}

.bluegrad_1 {
  background: linear-gradient(to bottom, #6db3f2 0%, #54a3ee 50%, #3690f0 51%, #1e69de 100%);
}

.orange-grad1 {
  background: linear-gradient(to bottom, rgb(199, 34, 0) 0%, rgb(255, 102, 0) 25%, rgb(234, 40, 3) 63%, rgb(255, 176, 81) 100%);
}

.light-orange-grad {
  background: linear-gradient(to bottom, rgb(255, 183, 107) 0%, rgb(255, 167, 61) 50%, rgb(255, 124, 0) 51%, rgb(255, 127, 4) 100%);
}

.blackshiny {
  background: linear-gradient(to bottom, rgb(76, 76, 76) 0%, rgb(89, 89, 89) 12%, rgb(102, 102, 102) 25%, rgb(71, 71, 71) 39%, rgb(44, 44, 44) 50%, rgb(0, 0, 0) 51%, rgb(17, 17, 17) 60%, rgb(43, 43, 43) 76%, rgb(28, 28, 28) 91%, rgb(19, 19, 19) 100%);
}

.title-grad {
  background: linear-gradient(to bottom, rgb(158, 0, 0) 0%, rgb(255, 93, 0) 50%, rgb(246, 41, 12) 51%, rgb(240, 47, 23) 71%, rgb(109, 0, 0) 100%);
}

@keyframes border-color-animation {
  0% {
    border-color: #ffa200;
  }
  50% {
    border-color: #880000;
  }
  100% {
    border-color: #ffa200;
  }
}
.audio-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  width: 50%;
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
}
.audio-player .contact-container {
  min-width: 500px;
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  border-radius: 30px;
}
.audio-player .contact-container .horiz-flo-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.audio-player .contact-container .horiz-flo-container .text-object {
  flex-grow: 1;
  padding: 0 10px;
  text-align: center;
  margin: 0 auto;
}
.audio-player .contact-container .horiz-flo-container #my-name {
  font-family: "Teko";
  font-size: 4vh;
  color: #fff;
  text-shadow: 0px 6px 5px #000000;
}
.audio-player .contact-container .horiz-flo-container .discord-email {
  font-family: "Teko";
  font-size: 3vh;
  color: #000000;
}
.audio-player #player-container {
  width: 100%;
}
.audio-player #player-container #title-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
  margin-top: 15px;
  padding: 15px;
  border: groove #fff 13px;
  border-radius: 30px;
  text-align: center;
  animation: border-color-animation 3s infinite; /* Apply the animation */
}
.audio-player #player-container #title-holder #pre-song {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  font-family: "Teko";
  width: 80%;
}
.audio-player #player-container #title-holder #song-title {
  line-height: 0.75;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  font-family: "Teko";
  width: 80%;
  word-wrap: break-word;
}
.audio-player #player-container .controls {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.audio-player #player-container .controls #buttons-container {
  display: flex;
  flex: 1;
}
.audio-player #player-container .controls #buttons-container .top-buttons {
  font-size: 2vh; /* Fixed font size */
  flex: auto;
  margin: 5px;
  padding: 5px 10px;
  line-height: 1;
  border-radius: 20px;
  color: white;
  white-space: nowrap;
  font-family: "Teko";
}
.audio-player #player-container .controls .time-labels {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin: 0 15px;
  font-size: 3vh;
}
.audio-player #player-container #range-holder {
  width: 100%;
}
.audio-player #player-container #range-holder #seek-bar {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 6vh;
  margin: 0;
  background: transparent;
}
.audio-player #player-container #range-holder #seek-bar::-webkit-slider-runnable-track {
  height: 6vh;
  background: linear-gradient(to bottom, rgb(255, 183, 107) 0%, rgb(255, 167, 61) 50%, rgb(255, 124, 0) 51%, rgb(255, 127, 4) 100%);
  box-shadow: 0px 10px 19px 0px rgba(0, 0, 0, 0.75);
  border-radius: 3vh;
}
.audio-player #player-container #range-holder #seek-bar::-moz-range-track {
  height: 6vh;
  background: linear-gradient(to bottom, rgb(255, 183, 107) 0%, rgb(255, 167, 61) 50%, rgb(255, 124, 0) 51%, rgb(255, 127, 4) 100%);
  box-shadow: 0px 10px 19px 0px rgba(0, 0, 0, 0.75);
  border-radius: 3vh;
}
.audio-player #player-container #range-holder #seek-bar::-ms-track {
  height: 6vh;
  background: transparent;
  border: none;
  color: transparent;
}
.audio-player #player-container #range-holder #seek-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  border: rgb(0, 0, 0) 2px inset;
  background: linear-gradient(to bottom, rgb(203, 96, 179) 0%, rgb(193, 70, 161) 50%, rgb(168, 0, 119) 51%, rgb(219, 54, 164) 100%);
  cursor: pointer;
  margin-top: 0.5vh;
}
.audio-player #player-container #range-holder #seek-bar::-moz-range-thumb {
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  border: rgb(0, 0, 0) 2px inset;
  background: linear-gradient(to bottom, rgb(203, 96, 179) 0%, rgb(193, 70, 161) 50%, rgb(168, 0, 119) 51%, rgb(219, 54, 164) 100%);
  cursor: pointer;
  margin-top: 0.5vh;
}
.audio-player #player-container #range-holder #seek-bar::-ms-thumb {
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  border: rgb(0, 0, 0) 2px inset;
  background: linear-gradient(to bottom, rgb(203, 96, 179) 0%, rgb(193, 70, 161) 50%, rgb(168, 0, 119) 51%, rgb(219, 54, 164) 100%);
  cursor: pointer;
  margin-top: 0.5vh;
}
.audio-player #player-container #range-holder #seek-bar:focus {
  outline: none;
}
.audio-player #player-container #range-holder #volume-display {
  margin: 0 auto;
  text-align: center;
  font-size: 1.5rem;
}
.audio-player #player-container #range-holder #volume-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.audio-player #player-container #range-holder #volume-holder #volume-icon-holder {
  height: 6vh;
  width: 6vh;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.audio-player #player-container #range-holder #volume-holder #volume-icon-holder img {
  max-width: 100%;
  height: auto;
}
.audio-player #player-container #range-holder #volume-holder #volume-bar-holder {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
}
.audio-player #player-container #range-holder #volume-holder #volume-bar-holder #volume-bar {
  width: 100%;
  height: 6vh;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #ccc;
  border-radius: 3vh;
}
.audio-player #player-container #range-holder #volume-holder #volume-bar-holder #volume-bar::-webkit-slider-runnable-track {
  height: 6vh;
  background: linear-gradient(to bottom, rgb(255, 183, 107) 0%, rgb(255, 167, 61) 50%, rgb(255, 124, 0) 51%, rgb(255, 127, 4) 100%);
  border-radius: 3vh;
  box-shadow: 0px 10px 19px 0px rgba(0, 0, 0, 0.75);
}
.audio-player #player-container #range-holder #volume-holder #volume-bar-holder #volume-bar::-moz-range-track {
  height: 6vh;
  background: linear-gradient(to bottom, rgb(255, 183, 107) 0%, rgb(255, 167, 61) 50%, rgb(255, 124, 0) 51%, rgb(255, 127, 4) 100%);
  border-radius: 3vh;
  box-shadow: 0px 10px 19px 0px rgba(0, 0, 0, 0.75);
}
.audio-player #player-container #range-holder #volume-holder #volume-bar-holder #volume-bar::-ms-track {
  height: 6vh;
  background: transparent;
  border: none;
  color: transparent;
}
.audio-player #player-container #range-holder #volume-holder #volume-bar-holder #volume-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  border: rgb(0, 0, 0) 2px inset;
  background: linear-gradient(to bottom, rgb(203, 96, 179) 0%, rgb(193, 70, 161) 50%, rgb(168, 0, 119) 51%, rgb(219, 54, 164) 100%);
  cursor: pointer;
  margin-top: 0.5vh;
}
.audio-player #player-container #range-holder #volume-holder #volume-bar-holder #volume-bar::-moz-range-thumb {
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  border: rgb(0, 0, 0) 2px inset;
  background: linear-gradient(to bottom, rgb(203, 96, 179) 0%, rgb(193, 70, 161) 50%, rgb(168, 0, 119) 51%, rgb(219, 54, 164) 100%);
  cursor: pointer;
}
.audio-player #player-container #range-holder #volume-holder #volume-bar-holder #volume-bar::-ms-thumb {
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  border: rgb(0, 0, 0) 2px inset;
  background: linear-gradient(to bottom, rgb(203, 96, 179) 0%, rgb(193, 70, 161) 50%, rgb(168, 0, 119) 51%, rgb(219, 54, 164) 100%);
  cursor: pointer;
}
.audio-player #player-container #range-holder #volume-holder #volume-bar-holder #volume-bar:focus {
  outline: none;
}
.audio-player #track-selection-container {
  position: relative;
  margin-top: 1vh;
  padding: 2vh;
  min-height: 250px;
  max-height: 512px;
  width: 90%;
  border-radius: 3vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
}
.audio-player #track-selection-container::-webkit-scrollbar {
  width: 4rem;
  height: auto;
}
.audio-player #track-selection-container::-webkit-scrollbar-track {
  background: linear-gradient(to right, rgb(125, 126, 125) 0%, rgb(14, 14, 14) 100%);
  border-radius: 1rem;
  border: #000000 3px solid;
}
.audio-player #track-selection-container::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, rgb(248, 80, 50) 0%, rgb(241, 111, 92) 50%, rgb(246, 41, 12) 51%, rgb(240, 47, 23) 71%, rgb(231, 56, 39) 100%);
  border-radius: 6px;
  border: #000000 3px solid;
}
.audio-player #track-selection-container #track-listing-title {
  border-radius: 3vh;
  width: 90%;
  margin: 5px 0;
  justify-content: center;
  text-align: center;
  font-size: 2.25rem;
  align-items: center;
  white-space: normal;
  word-break: break-word;
  padding: 1rem;
}
.audio-player #track-selection-container .clickable-title {
  border-radius: 3vh;
  width: 90%;
  margin: 5px 0;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  align-items: center;
  white-space: normal;
  word-break: break-word;
  padding: 1rem;
}

.graphite-grad {
  background: linear-gradient(to bottom, rgb(149, 149, 149) 0%, rgb(13, 13, 13) 46%, rgb(1, 1, 1) 50%, rgb(10, 10, 10) 53%, rgb(78, 78, 78) 76%, rgb(56, 56, 56) 87%, rgb(27, 27, 27) 100%);
}

.tan-grad {
  background: linear-gradient(to bottom, rgb(237, 177, 118) 0%, rgb(140, 51, 16) 50%, rgb(191, 110, 78) 100%);
}

@media (max-width: 1000px) {
  body {
    font-size: 1.5rem;
  }
  .audio-player {
    width: 100%;
  }
  .audio-player .controls {
    width: 100%;
  }
  .audio-player .controls #buttons-container .button-text {
    font-size: 2rem;
  }
}/*# sourceMappingURL=mainsass.css.map */