body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  text-align: center;
}

.screen {
  display: none;
  padding: 20px;
}

.screen.active {
  display: block;
}

input, button {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 80%;
  max-width: 300px;
}

button {
  background: #ff9933;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

button:hover {
  background: #e67e00;
}

.aarti-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.aarti-list button {
  background: none;
  border: none;
  cursor: pointer;
}

.aarti-list img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid #ff9933;
}

.lyrics-container {
  height: 70vh;
  overflow-y: scroll;
  padding: 15px;
  border: 1px solid #ddd;
  margin: 20px auto;
  width: 90%;
  max-width: 600px;
  background: #f9f9f9;
  text-align: left;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}



