:root {
    --line-color: #0356fc;
  }
  
body {
  height: 100vh;
  overflow-y: auto;
}

main {
  position: relative;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  max-width: 70%;
  width: auto;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1;
}
  
  #content {
    background-color: rgba(255, 255, 255, 0.18);
    padding: 0.6rem;
    border: 0px solid var(--line-color);
  }
  
  .plat {
    background-color: rgb(252, 179, 246);
    font-family: "Nunito", sans-serif;
    font-size: 2rem;
    cursor: pointer;
    margin-top: 0.1em;
    line-height: 1;
  }
  
  .plat:first-of-type {
    margin-top: 0;
  }
  
  .plat:hover {
    background-color: rgb(185, 166, 148);
  }
  
  a {
    color: #30231c;
    text-decoration: none;
    display: block;
    padding: 0.3rem 2rem 0.3rem 0.75rem;
    transition: transform 0.5s;
  }
  
  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
  
  a:hover {
    transform: perspective(1px);
  }
  
  hr {
    border: none;
    border-top: 1px solid var(--line-color);
  }
  
  .parallax {
    /* The image used */
    background-image: url(bluearchivebkg.jpg);
    
    /* Set a specific height */
    height: 100vh;
    
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
  }


  .gachaids {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
  }
  
  .gachaids:before {
    content: "";
    position: absolute;
    top: 35%;
    left: 10%;
    right: 10%;
    bottom: 35%;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: -1;
  }
  
  .gachaids h1 {
    font-size: 1.5rem;
    margin-top: 0;
    padding: 0;
  }
  
  .gachaids ul {
    padding: 0;
    list-style-type: none;
  }
  
  .gachaids li {
    margin-bottom: 10px;
    text-align: left;
  }
  
  .album-scroll {
    width: 80%;
    height: 400px;
    margin: 20px auto;
    overflow-y: scroll;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: #ffffff30 transparent;
}

.album-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 10px;
}

.album-cover {
    width: 66%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.album-cover:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .album-scroll {
        width: 90%;
        height: 300px;
    }
}