:root {
  --background_light: rgb(50,51,46);
  --background_medium: rgb(45,46,40);
  --background_dark: rgb(40,41,35);
  overflow-y: auto;
  overflow-x: hidden;
}

.col-right {
  text-align: right;
  margin-right: 2%;
}

.col-left {
  align-content: left;
}

.row {
  width: 100vw;
}

.body {
  overflow: hidden;
}

.container {
  background-color: var(--background_dark);
  padding-bottom: 10vh;
}

.footer-copyright {
  color: white;
  font-size: 12px;
}

.navbar {
  color: white;
}

.soundcards {
  padding-top: 15vh;
  display: grid;
}

.soundcard-title {
  font-size: 20px;
  padding-bottom: 1vh;
}

.navbar-header {
  font-size: x-large;
  margin-top: 1.5vh;
}

.soundcards--fill {
  grid-template-columns: repeat(auto-fill, minmax(15vw, 1fr));
}

.soundcard {
  background-color: deepPink;
  padding: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.card {
  align-content: center;
}

.modal {
  color: white;
}

@media (max-width:1400px) {
  .col-left {
    display: none;
  }

  .row {
    width: 50vw;
  }
}

.custom-button {
  margin-left: 2vw;
  margin-right: 2vw;
}

@media (max-width:960px) {
  .soundcards--fill {
    grid-template-columns: repeat(auto-fill, minmax(40vw, 1fr));
  }

  .navbar-header {
    font-size: 1px;
    display: none;
  }
  
  .soundcard-title {
    font-size: 13px;
  }

  .col-right {
    margin-right: 10%;
  }

  .custom-button {
    margin-left: unset;
    margin-right: unset;
  }
}

::-webkit-scrollbar {
  border-radius: 0px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--background_dark); 
  border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
  background: var(--background_light);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--background_medium);
}
