/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: black rgba(39, 39, 42);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: black;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(39, 39, 42);
  border-radius: 20px;
  border: 3px solid black;
}

.back-to-main__container {
  background-color: black; 
  font-size: 13px; 
  text-align: center; 
  width: 100%;
}  