@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
}

body {
  background-color: black;
  color: #fff;
}

.animation {
  z-index: -1;
  position: absolute;
}

#gif {
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.8s ease-in;
}

.heading {
  background-color: rgba(2, 33, 95, 0.648);
  display: flex;
  height: 57px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.heading img {
  width: 3%;
}

.songs-container {
  align-items: center;
  display: flex;
  flex-direction: row;
  width: 95%;
  height: 65vh;
  margin: 20px auto;
}

.song-list {
  width: 70%;
  height: 64vh;
  margin-left: 1.5%;
  padding-top: 1%;
}

.song-choice {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.song-choice p {
  margin-left: 1%;
}

#container {
  background-image: url(covers/1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  height: 64vh;
  width: 30%;
}

.showProgress,
.control-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  margin: auto;
}

#progressBar {
  width: 90%;
}

.control-buttons img {
  width: 6%;
}

.song-name {
  width: 100%;
}

.footer h2 {
  width: max-content;
  margin: auto;
}

.hide {
  opacity: 0;
}

.switchColor {
  background-color: white;
  color: black;
}
