@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=Playfair+Display:ital,wght@0,400;1,400&family=Space+Mono&display=swap');


body {
  margin: 0;
  min-height: 100vh;
  background-color: #4a6860;
  background-image: url('bgpic 1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}

#grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  z-index: 0;
}



.card {
  position: relative;
  z-index: 1;
  width: 85%;
  max-width: 1500px;
  height: 700px;
  background: rgba(238, 242, 240, 0.92);
  box-shadow: 0 12px 56px rgba(20,40,40,0.38), 0 2px 12px rgba(0,0,0,0.15);
  border-radius: 0px;
  border: 0.5px solid rgba(180,210,200,0.4);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow-y: auto;
  border-radius: 0;
}

.albums-header {
  display: block;
  margin: 0 auto 0.5rem;
  width: 55%;
}

.intro {
  font-family: 'Courier New', monospace;
  font-style: italic;
  font-size: 0.92rem;
  color: #3a4a48;
  line-height: 1.7;
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(70,110,100,0.2);
}

.album-grid {
  display: grid;
  grid-template-columns:  repeat(auto-fill, 140px);
  gap: 0.75rem;
}

.album-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: opacity 0.15s;
  border-radius: 10;
}

.album-card:hover { opacity: 0.75; }

.album-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  border: 0.5px solid rgba(70,110,100,0.22);
  display: block;
  border-radius: 10;
}



.album-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  color: #2a3038;
  text-align: center;
}


