/* Define the fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0; /* Start fully transparent */
  }
  to {
    opacity: 1; /* End fully opaque */
  }
}

body {
  animation: fadeIn 2s ease; /* Duration of 2 seconds, easing function */
}

#selected-artist h1 {
  font-size: 1.4em;
}

#selected-artist {
  text-align: center;
}

.icon {
  width: 40px;
  transform: translate(0.5px, 6px);
}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.card {
  width: 275px;
  overflow: hidden;
  background-color: #2e4157;
  border-radius: 8px;
  margin: 20px;
  transition: border-color 0.3s ease; /* Smooth transition for border color */
  transition: background-color 0.3s ease;
  border: 2px solid #99a3ae; /* Default border color (black) */
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 0 0.25rem;
  cursor: pointer;
  border-color: #204c83;
  background-color: #151e28;
}

.card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  align-items: center;
}

.card-content {
  padding: 10%;
}

.card-content h3 {
  font-size: 1.2em;
  text-align: center;
  margin-top: 0%;
}

.card span {
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 1em;
  padding: 5px;
  text-align: center;
}

.card time {
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-size: 1em;
  padding: 8px;
  text-align: center;
}
