button {
    background: transparent;
    border: none;
    display:flex;
    flex-direction: column;
    color:red;
    text-align: center;
}

button img{
  width:200px;
  height:auto;
}

  .modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color:pink;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 50%; /* Could be more or less, depending on screen size */
  text-align: center;
}

  .albums {
    margin-top: 5%;
    overflow: hidden; 
    background: transparent;
    width: 100vw; 
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .album-scroll {
    display: flex;
    animation: scroll 10s linear infinite;
    white-space: nowrap;
    width: fit-content;
  }
  
  @keyframes scroll {
    0% { transform: translateX(100vw); }  
    100% { transform: translateX(-100%); }
  }