#vinyl-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  padding: 20px;
  border-radius: 20px;
  width: 300px;
  margin: 0 auto;
}

#vinyl-cover {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 5px solid #00f;
  background-color: #111;
  background-size: cover;
  background-position: center;
  animation: spin 6s linear infinite;
  margin-bottom: 20px;
}

#track-info {
  color: white;
  text-align: center;
}

#track-title {
  font-size: 18px;
  font-weight: bold;
  color: #0f0;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
