.background-image {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: black;
  z-index: -1;
}
.index-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "Brush Script MT", cursive;
  font-size: 2.5rem;
  color: #fff;
}
.screen-container {
  width: 100vw;
  height: 100vh;
  text-align: center;
}
.section-container {
  width: 100vw;
  text-align: center;
  padding-bottom: 2rem;
  padding-top: 1rem;
}

.album-container {
  padding: 1rem;
  padding-bottom: 2rem;
}

.text-container {
  margin-left: 10%;
  margin-right: 10%;
}
a {
  color: inherit; /* Inherits text color from parent */
  text-decoration: none; /* Removes underline (optional) */
}
body {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #e1dbdb;
  background-color: black;

  font-family: "Trebuchet MS", sans-serif;
}
.grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  gap: 16px;
  justify-content: center;
  padding: 0px;
}

.grid-item {
  height: fit-content;
  width: fit-content;
}
.icon {
  max-height: 50px;
}

.header-banner {
  background-color: black;
  position: sticky;
  height: 60px;
  top: 0;
}
.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.block-color-1 {
  background-color: #2b263b;
}
.block-color-2 {
  background-color: #2b262b;
}
.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.song-card {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}

.song-card:hover {
  transform: translateY(-5px);
}

.song-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.song-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.no-cover {
  width: 100%;
  height: 200px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.song-title {
  padding: 15px;
  margin: 0;
  font-size: 1.1em;
}

.cover-image {
  max-width: 600px;
  width: 90%;
}

.icon-deezer {
  height: 30px;
  margin: 10px;
}
