@import url("https://cdn.jsdelivr.net/npm/water.css@2/out/water.css");

body {
  background-color: #121212;
  color: #e0e0e0;
}

#menu button {
  background-color: #292929;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

#menu button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px 3px rgba(0, 191, 255, 0.6);
}

a {
  text-decoration: none;
  color: #ffffff;
  background-color: #121212;
  border-radius: 0px;

  transition: text-shadow 0.3s ease;
}

a:hover {
  text-shadow: 2px 2px 4px rgba(138, 180, 248, 0.5);
}

.songsContainer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  justify-content: center;
  padding: 20px;
}

.card {
  width: 200px;
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(138, 180, 248, 0.5);
}

.card-image {
  width: 200px;
  height: 200px;
  border-radius: 8px 8px 0 0;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  padding-left: 5px;
  color: white;
  margin: 5px;
}

.card-year {
  font-size: 14px;
  padding-left: 10px;
  color: white;
  background-color: #1e1e1e;
  margin: 0;
}

.card-duration {
  font-size: 14px;
  padding-left: 115px;
  color: white;
  font-style: italic;
  text-align: right;
}

@media (max-width: 768px) {
  .songsContainer {
    grid-template-columns: 1fr 1fr;
  }
  .card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .songsContainer {
    grid-template-columns: 1fr;
  }
}

.media-input {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.glow button {
  background-color: #292929;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.glow button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px 3px rgba(0, 191, 255, 0.6);
}

#checkboxed:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px 2px rgba(0, 191, 255, 0.6);
}
