*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
:root {
  --clr-icons: grey;
  --clr-text: white;
  --clr-bg-dark: #242424;
  --clr--bg-light: #3b3b3b;
  --clr-accent: #ff7600;
}
body {
  margin: 1rem;
  background-color: floralwhite;
  color: var(--clr-text);
  line-height: 1.5;
  font-family: sans-serif;
}
nav {
  font-family: "Lucida Sans", "Lucida Sans Regular";
}
nav ul {
  display: flex;
  list-style-type: none;
  height: 3rem;
  background-color: black;
  color: white;
  padding: 1rem;
  font-family: "Cambria";
}

nav ul li {
  padding: 0.5rem;
}
.brand img {
  width: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1.3rem;
}
.container {
  min-height: 74vh;
  background-color: black;
  color: white;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  display: flex;
  margin: 0.5rem auto;
  width: 70%;
  height: auto;
  border-radius: 1rem;
  padding: 1rem;
  background-image: url(17.jpg);
  background-repeat: none;
}
.bottom {
  position: sticky;
  height: 4rem;
  background-color: black;

  display: flex;
  justify-content: center;
  color: white;
  flex-direction: column;
}
.icons {
  text-align: center;
  justify-content: center;
  font-size: 25px;
  cursor: pointer;
}
.icon {
  cursor: pointer;
}

#myprogressbar {
  width: 80%;
  justify-content: center;
  text-align: center;
  margin-left: 5.3rem;
}
.songitem {
  height: 45px;
  display: flex;
  color: black;
  font-weight: bold;
  width: 60%;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border-radius: 30px;
  padding: 2px;
  margin: 12px 0px;
}

.songitem img {
  width: 4rem;
  padding: 10px;
  border-radius: 9.5rem;
  border-bottom-left-radius: 3rem;
}
.timestamp {
  margin: 23px 0px;
}

.timestamp {
  cursor: pointer;
}

.songinfo {
  position: absolute;
  left: 0;
  font-weight: bold;
  margin-left: 40px;
  padding-top: 5px;
}

.songinfo img {
  opacity: 0;
  transition: opacity 0.4s ease-in;
  justify-content: flex-end;
  padding-right: 10px;
}

.songitemplay {
  cursor: pointer;
  padding-left: 6px;
}
.songname {
  padding: 10px;
}
@media (max-width: 600px) {
  .songitem {
    width: 100%;
    height: 35px;
  }

  .icons {
    text-align: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    margin-left: 3rem;
  }
  #myprogressbar {
    width: 70%;
    justify-content: center;
    text-align: center;
    margin-left: 4.5rem;
  }
  .container {
    width: 75%;
  }
}
@media (max-width: 1200px) {
  .container {
    background-image: url(new.jpg);
    background-repeat: none;
  }
}
