body {
  background: #141414;
  background-attachment: fixed;
  background-size: cover;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Montserrat;
  color: white;
}

.main {
  margin: auto;
  margin-top: 30px;
  background: rgba(0, 0, 0, 0.98);
  width: 90%;
  max-width: 1000px;
  min-height: 80vh;
  border-radius: 20px;
  box-shadow: 0 0 120px 70px rgba(0, 0, 0, 0.3);
  padding: 20px;
  box-sizing: border-box;
}

.logo {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.logo-img {
  max-width: 100%;
  max-height: 70vh;
}

h2 {
  text-align: center;
}

.songList, .actualSet {
  width: 100%;
  max-width: 400px;
  margin: auto;
  height: 500px;
  overflow: auto;
  border: gray 1px solid;
  border-radius: 30px;
  padding: 10px;
  box-sizing: border-box;
}

.songList ul, .actualSet ul {
  list-style-type:none;
  padding-left: 0;
  line-height: 40px;
}

.actualSet {
  height: 250px;
}

li:hover {
  background: #14799b;
  cursor: pointer;
  color: white;
  border-radius: 10px;
}

/* width */
.songList::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.songList::-webkit-scrollbar-track {
  background: none;
}

/* Handle */
.songList::-webkit-scrollbar-thumb {
  background: #888;
}

.mainSong {
  margin: auto;
  margin-top: 50px; 
  margin-bottom: 50px;
  width: 98%;
  max-width: 1000px;
  background: rgba(0, 0, 0, 0.98);
  border-radius: 30px;
  padding: 10px;
  box-sizing: border-box;
}

.song {
  width: 100%;
  max-width: 400px;
  margin: auto;
}

.song span {
  display: none;
}

/* .show-chords {
  line-height: 30px;
} */

.song.show-chords p {
  line-height:2.3em;
  margin-bottom:2em;
}
.song.show-chords span {
  position: relative;
  /* top: -1.1em; */
  top: -13px;
  display:inline-block;
  width: 0;
  overflow:visible;
  color: #00ade7;
  font-weight:bold;
  font-family:Arial, Helvetica, sans-serif;
  margin-top: 11px;
}

.btn {
  width: 130px;
  background:none;
  height: 100px;
  color: white;
  font-size: 40px;
  border: 0px;
  border-radius: 20px;
  cursor: pointer;
  border:#14799b 1px solid;
  transition: 0.3s;
  line-height: 50px;
}

.btn:hover {
  background:#14799b;
  color: white;
}

.btn-copy {
  background:#14799b;
  color: white;
  margin: auto;
  width: 230px;
  height: 50px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.song-schedule {
  display: block;
  width: 30px;
  height: 30px;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
}
