.head {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 8vw;
    color: rgb(177, 0, 0);
  }


  * {
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #202020;
  }

  input[type=radio] {
    display: none;
  }
  
  .card {
    position: absolute;
    width: 60%;
    height: 90%;
    min-height: 400px;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform .4s ease;
    cursor: pointer;
  }
  
  .container {
    width: 100%;
    max-width: 1000px;
    max-height: 700px;
    height: 60%;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .cards {
    position: relative;
    width: 100%;
    height: 50vh;
    margin-bottom: 20px;
  }
  
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
  }
  
  #item-1:checked ~ .cards #song-5,
  #item-2:checked ~ .cards #song-1,
  #item-3:checked ~ .cards #song-2,
  #item-4:checked ~ .cards #song-3,
  #item-5:checked ~ .cards #song-4 {
    transform: translateX(-40%) scale(.8);
    opacity: .5;
    z-index: 0;

    img {
      box-shadow: 0px 0px 5px 5px rgba(12, 12, 12, 0.47);
    }
  }

  #item-1:checked ~ .cards #song-2,
  #item-2:checked ~ .cards #song-3,
  #item-3:checked ~ .cards #song-4,
  #item-4:checked ~ .cards #song-5,
  #item-5:checked ~ .cards #song-1 {
      transform: translateX(40%) scale(.8);
      opacity: .5;
      z-index: 0;

      img {
        box-shadow: 0px 0px 5px 5px rgba(12, 12, 12, 0.47);
      }
  }

  #item-1:checked ~ .cards #song-1,
  #item-2:checked ~ .cards #song-2,
  #item-3:checked ~ .cards #song-3,
  #item-4:checked ~ .cards #song-4,
  #item-5:checked ~ .cards #song-5 {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 1;

    img {
      box-shadow: 0px 0px 5px 5px rgba(12, 12, 12, 0.47);
    }
  }

  #item-1:checked ~ .cards #song-3,
  #item-1:checked ~ .cards #song-4,
  #item-2:checked ~ .cards #song-4,
  #item-2:checked ~ .cards #song-5,
  #item-3:checked ~ .cards #song-5,
  #item-3:checked ~ .cards #song-1,
  #item-4:checked ~ .cards #song-1,
  #item-4:checked ~ .cards #song-2,
  #item-5:checked ~ .cards #song-2,
  #item-5:checked ~ .cards #song-3 {
      opacity: 0;
      z-index: 0;
  }

  .foot {
    position: absolute;
    bottom: 0px;
    text-align: center; 
    font-size: 20px;
    margin: 20px;
    color: #ffffff;

    a {
      color: #006fcf;
      text-decoration: none;
      }
      
      a:hover {
          color:#00A0C6; 
          text-decoration:none; 
          cursor:pointer;  
      }
  }


  /* .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
} */
