body {
  font-family: verdana, sans-serif;
  color: white;
  background-color: black;
  height: 100%;
  display: grid;
}

.cen {
  display: flex;
  justify-content: center;
  align-items: center;
}

span {
  margin: auto;
}

.ln {
  display: inline-block;
  font-size: 2em;
}

.l {
  display: block;
  text-align: center;
  margin: 1em;
  border: 1px solid white;
  color: white;
}

.2 {
  position: absolute;
  bottom: 100px;
  text-align: center;
  margin: 1em;
}

.footer {
    position: fixed;    /* Fixes the icons in place */
    bottom: 20px;       /* Adjusts the space from the bottom edge */
    right: 20px;        /* Adjusts the space from the right edge */
    display: flex;      /* Aligns the icons in a row */
    gap: 15px;          /* Increases space between the icons */
    z-index: 9999;      /* Ensures icons stay above other content */
}

.footer a {
    text-align: center;
}

/* Add the new styles to position the mute button */
.music-controls {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.mute-button {
  background-color: #020863;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.mute-button:hover {
  background-color: #050e99;
}
    background-color: #1DB954; /* Change background to Spotify green on hover */
    color: #fff;                /* Keep text white */
}
