html,
body, 
header, 
nav, 
a, 
span, 
div, 
footer {
  image-rendering: pixelated;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal;
  text-rendering: optimizeSpeed;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #fff;
  font-family: "Unifont", monospace;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


header {
  padding: 1em 0;
  text-align: center;
}

.nav-btn {
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
  margin: 0 1em;
  padding: 0.3em 0.6em;
  border: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.nav-btn:hover {
  border-color: #fff;
  color: #aaa;
}

/* Centered content container */
.center-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em;
}

.center-content img {
  /* existing styles */
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-bottom: 1em;
  display: block;
  margin-left: auto;
  margin-right: auto;

  /* smooth scaling */
  image-rendering: auto; /* default smooth scaling */

  /* for some browsers */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* optional for better scaling */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}



/* Album grid layout */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5em;
  max-width: 900px;
  width: 100%;
}

.album-item {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: box-shadow 0.3s ease;
  display: block;
}

.album-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s ease;
}

.album-item:hover img {
  filter: grayscale(100%);
}


/* Album label overlay */
.album-label {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.9em;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.3em 0;
  pointer-events: none; /* allows the whole block to be clickable */
}
 
footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 1.5em 0 1em 0;
  background: transparent;
}

.footer-img {
  height: 80px;
  opacity: 0.85;
}

.links-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}

.links-list a {
  text-decoration: none;
  font-size: 2.2em;
  color: #fff;
  transition: text-shadow 0.3s ease;
}

.links-list a:hover {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.social-icons {
  margin-top: 1.5em;
  display: flex;
  justify-content: center;
  gap: 2em;
}

.social-icons a {
  display: inline-block;
  cursor: pointer;
  transition: filter 0.3s ease;
}

.social-icons a:hover {
  filter: drop-shadow(0 0 5px white);
}
