#DOL {
  position: fixed;
  height: 100%;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  top: 0;
  left: 0;
  backdrop-filter: blur(2px);
}

#repeat-button {
  color: black;
}

#share-link {
  overflow-x: auto;
  border: 1px solid #ccc;
  background-color: #f5f5f5;
  line-height: 1;
  padding: 9.5px;
  margin: 0 0 10px;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  border-radius: 4px;
  max-width: 280px;
  font-weight: bold;
}

#music-player {
  text-align: center;
  margin: 50px auto;
}

#audio-progress {
  height: 10px;
  width: 0;
  border-radius: 17px;
  background-color: #007bff;
  transition: width 0.3 ease;
}

.flex {
  display: flex;
  justify-content: center;
}

h1 {
  font-size: 24px;
  font-family: Courier New;
}

h5 {
  text-align: center;
  font-family: Monospace;
}

audio {
  width: 300px;
  margin: 20px auto;
}

button {
  padding: 10px 20px;
  margin: 10px;
  font-size: 18px;
}

footer {
  bottom: 0;
  left: 0;
  position: fixed;
  width: 100%;
  text-align: center;
}

footer a {
  font-family: Sans-Serif;
  text-decoration: none;
}

#audio-player {
  display: none;
}

.loader {
  border: 8px solid #f3f3f3;
  /* Light grey */
  border-top: 8px solid #34db;
  /* Blue */
  border-radius: 50%;
  width: 34px;
  height: 34px;
  margin-right: auto;
  margin-left: auto;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
