@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  font-family: "Roboto", sans-serif;
  padding: 2rem;
  background-color: #8bc6ec;
  background-image: linear-gradient(135deg, #8bc6ec 0%, #9599e2 100%);
}

.main-container {
  background-color: #fcffe7;
  padding: 3rem 1rem;
  border-radius: 5px;
  width: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cover-img-container {
  width: 15rem;
  height: 15rem;
}

.cover-img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rotate{
    animation: rotation 10s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.song-name {
  font-size: 2rem;
  margin: 0.5rem 0;
}

.slider-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

#slider-bar {
  width: 15rem;
  height: 3px;
}

.btn-container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-around;
  font-size: 2rem;
  cursor: pointer;
  margin-top: 1rem;
  
}

.play-btn {
  font-size: 3rem;
}

.copyright{
    margin-top: 2rem;
    text-align: center;
}

.copyright a{
    color: #fcffe7;
}