body {
  color: white;
  font-family: Courier;
  cursor: url('cursors/cursor-main1.png'), default;
  background-image: url('/albums/style/apophenia background.jpg');
  background-position: center;
  background-size: cover;
  padding-left: 20px;
  margin: 0;
  min-height: 100vh;
  position: relative;
}

html {
    min-height: 100%;
    box-shadow: inset 0 0 2000px rgba(0, 0, 0, 255);
}

.content {
    position: relative;
    z-index: 1; /* Ensure content is on top */
    color: white;
    text-align: center;
    padding-top: 100px; /* Example spacing */
}

/* other cursors */

a:hover, button:hover {
  cursor: url('cursors/cursor-pointer1.png'), pointer;
}

button, a {
  cursor: url("cursors/cursor-main1.png"), default;
}

p, span, input, textarea {
  cursor: url('cursors/cursor-text1.png') 16 16, text;
}

div, header, footer {
  cursor: default;
}

.wait-cursor {
  cursor: wait;
}

body, html {
  cursor: url('/cursors/cursor-main1.png'), auto;
}



/* buttons */

.button-link {
  background-image: url('button pattern 1.png');
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-image 0.3s ease;
  text-decoration: none;
}

.button-link:hover {
  background-color: #666;
}

.image-button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: white;
  font-family: sans-serif;
}

.image-button img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.image-button:hover img {
  transform: scale(1.05);
  cursor: url("/cursors/cursor-pointer1.png"), pointer;
}

.image-button p {
  margin-top: 8px;
  text-decoration: underline;
}


.image-button {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.image-button img {
  display: block;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  
  opacity: 0;
  pointer-events: none;
  
  transition: opacity 0.3s ease;
}

.image-button:hover .caption {
  opacity: 1;
  pointer-events: auto;
}


/* linkcolor */
a {
  color: white;
  text-decoration: underline;
}

/* horizontal-linescolor */
hr {
  color: white;
}

.shadow {
  filter: drop-shadow(0px 8px 16px rgba(0,0,0,3));
}

.centered {
    width: 100%; /* Ensures it uses full width on small screens */
    max-width: 960px; /* Or any desired max width (e.g., 1200px) */
    margin: 0 auto; /* This is what centers the wrapper horizontally */
}

/* formatting */

.album-row {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.cover {
  width: 250px;
  height: auto;
}

.tracklist {
  max-width: 300px;
}

.streaming {
  max-width: 300px
}