@font-face {
  font-family: 'minecraft';
  src: url('fonts/MinecraftRegular-Bmg3.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'minecraft';
  height: 100%;
  background-color: #eaeaea;
}

.video-embed {
  width: min(90vw, 800px);   
  aspect-ratio: 16 / 9;      
  margin: 4vh auto;          
  border: 2px solid white;
  box-shadow: 0 5px 5px rgba(0,0,0,.3);
  z-index: 2;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;            
  border: 0;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 0;
}

.fullscreen-bg {
  background-image: url('image copy.png');
  background-position: center center;
  background-repeat: no-repeat;
  position: fixed;
  top: -40vh;
  left: 0;
  height: 150vh;
  width: 100vw;
  z-index: -2;
  opacity: 1;
  background-size: 150% auto;
}

@media (max-width: 1250px) {
  .fullscreen-bg {
    background-size: 200% auto;
  }
}

@media (max-width: 800px) {
  .fullscreen-bg {
    background-size: 300% auto;
  }
}

@media (max-width: 600px) {
  .fullscreen-bg {
    background-size: 400% auto;
  }
}


header {
  text-align: center;
  color: white;
  margin-top: 5vh;
  font-size: 25px;
  text-shadow:
    0 15px 2px rgba(0, 0, 0, 0.2),
    0 2px 3px rgba(0, 0, 0, 0.3),
    0 2px 0px rgba(0, 0, 0, 0.8);
  transition: text-shadow 0.3s ease;
}

header img {
  width: 100px;
  height: auto;
  border: none;
}

h1 {
  margin-bottom: 0;
}

.album-section {
  margin: 5vh 0 5vh 0;
  text-align: center;
  color: #e0e0e0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.album-section a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e0e0e0;
  padding: 20px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'minecraft', monospace;
  text-align: center;
  max-width: 300px;
  box-shadow:
    20px 20px 20px rgba(255, 255, 255, 0.9),
    20px -20px 20px rgba(255, 255, 255, 0.9),
    -20px 20px 20px rgba(255, 255, 255, 0.9),
    -20px -20px 20px rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.album-section a div {
  word-break: break-word;
  max-width: 100%;
}

.album-section a:hover {
  background-color: #ffffff;
}

.album-text {
  font-size: 1.5rem;
  color: #ffffff;
  text-shadow:
    0 8px 2px rgba(0, 0, 0, 0.2),
    0 2px 3px rgba(0, 0, 0, 0.3),
    0 2px 0px rgba(0, 0, 0, 0.8);
  transition: text-shadow 0.3s ease;
}

.album-section a:hover .album-text {
  color: black;
  text-shadow:
    0 10px 2px rgba(0, 0, 0, 0.2),
    0 1px 0px rgba(0, 0, 0, 0.8);
}

.album-cover {
  width: 260px;
  height: 260px;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
  color: black; 
  box-shadow:
    0 0px 20px rgba(255, 255, 255, 0.9),
    8px 8px 0px rgba(255, 255, 255, 1),
    8px 8px 0px rgba(255, 255, 255, 1);
  transition: box-shadow 0.3s ease;
}

.album-section a:hover .album-cover {
  box-shadow:
    0 0px 20px rgba(0, 0, 0, 0),
    8px 8px 0px rgb(0, 0, 0),
    8px 8px 0px rgb(0, 0, 0);
}

.footer {
  width: 100%;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.socials {
  margin-bottom: 5vh;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  text-align: center;
  text-shadow:
    0 10px 2px rgba(0, 0, 0, 0.2),
    0 2px 3px rgba(0, 0, 0, 0.3),
    0 2px 0px rgba(0, 0, 0, 0.8);
  transition: text-shadow 0.3s ease;
}

.socials a {
  color: white;
  text-decoration: none;
  font-family: 'minecraft';
  font-weight: normal;
  white-space: nowrap;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  letter-spacing: 2.0px;
  position: relative;
  z-index: 1;
  transition: text-shadow 0.3s ease;
}

.socials a:hover {
  color: #000000;
  text-shadow:
    0 15px 2px rgba(0, 0, 0, 0.2),
    0 1px 0px rgba(0, 0, 0, 0.8);
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 12px 20px;
  background: transparent;
  z-index: 9999;
}

.fixed-footer a {
  font-size: 14px;
  color: rgb(0, 0, 0);
  text-decoration: underline;
}

.fixed-footer a:hover {
  color: rgb(99, 99, 255);
  transition-duration: 0.3s;
}

@media (max-width: 600px) {
  .socials {
    flex-direction: column;
    gap: 5px;
  }
}
