* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #d0e7eb;
}

.container {
  background-color: whitesmoke;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: 10px 10px 20px;
  height: 600px;
  width: 350px;
  border-radius: 50px;
  img {
    height: 300px;
    width: 300px;
    border-radius: 50%;
  }
}

.buttons {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 300px;
  i {
    border: 1px solid black;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 30px;
  }
  i:hover {
    background-color: black;
    color: white;
  }
}

.text-Container {
  height: 100px;
  width: 300px;
  .Song-Name {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
  }
  .Artist-Name {
    font-size: 18px;
    text-align: center;
    color: rgb(73, 68, 68);
  }
}

.Circle-Animation {
  animation: rotate-Img 3s linear infinite;
}

@keyframes rotate-Img {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
