* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 600;
}

html,
body {
  height: 100%;
  width: 100%;
}

main {
  height: 85%;
  width: 100%;
  background-color: #111;
  display: flex;
  padding: 5vw 10vw;
}

#left {
  height: 100%;
  width: 45%;
  /* background-image: url(https://m.media-amazon.com/images/I/91zTlD7AY1L.jpg); */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#right {
  height: 100%;
  width: 55%;
  padding: 0 3vw;
}

#right h3 {
  font-size: 30px;
}

#all-songs {
  height: 85%;
  margin-top: 30px;
  overflow-y: scroll;
}

.song-card img {
  height: 40px;
  width: 40px;
  margin-right: 20px;
}

.song-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #5a5a5a;
  padding: 15px 15px;
}

.song-card #part1 {
  display: flex;
  align-items: center;
}

.song-card h2 {
  font-size: 18px;
  font-weight: 600;
}

.song-card #part1 h3 {
  font-size: 12px;
  font-weight: 400;
  opacity: 75%;
}

.song-card h6 {
  font-size: 16px;
  font-weight: 500;
}

.song-card:nth-last-child(1) {
  border-bottom: 1px solid #5a5a5a;
}

.song-card:hover {
  background: #1e1e1e;
}

#player {
  height: 15%;
  width: 100%;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

#player h3 {
  background-color: rgb(30, 30, 30);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#player h3 i {
  font-size: 24px;
}

#player h3:active {
  scale: 0.9;
}

.controlls {
  display: flex;
  gap: 10px;
}

::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #282828;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #303030;
}

.progress-container {
  position: relative;
  background-color: white;
  height: 6px;
  width: 80%;
  border-radius: 50px;
}

.progress {
  background-color: #2f2828;
  height: 100%;
  width: 0%;
  border-radius: 50px;
  position: relative;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
}

.ball {
  height: 10px;
  width: 10px;
  background-color: #2f2828;
  border-radius: 50px;
  position: absolute;
}

.time {
    position: absolute;
    right: 10%;
}

.time h6 {
    font-weight: 700;
    font-size: 11px;
}