<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.container {
  min-height: 100px;
}

#first-container {
  background-color: #191a16;
  position: relative;
  display: flex;
  padding: 20px;
  min-height: 100px;
}

#second-container {
  background-color: rgb(242, 239, 232);
  position: relative;
  height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-container {
  display: flex;
  width: 100%;
  align-items: center;
}

.icon {
  width: 30px;
  height: 30px;
  margin: 0 5px;
}

.icons-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.title {
  color: #efe3cb;
  font-family: 'Rozha One', serif;
  font-size: 72px;
  position: absolute;
  left: 43%;
  bottom: 0%;
  text-align: center;
  width: auto;
}

.champ {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the container */
  object-position: center center;
}

#nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #191a16;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  min-height: 100px; /* Ensure the container fills down to the bottom of the screen */
  padding: 0; /* Remove any padding */
}

.nav-link {
  padding: 0 10px; /* Remove top/bottom padding, keep left/right */
  text-align: center;
  font-family: 'Rozha One', serif;
  font-size: 34px;
  color: rgba(239, 227, 203, 0.6);
  margin: 0 10px;
  text-decoration: none;
  display: flex; /* Add this */
  align-items: center; /* Add this */
  justify-content: center; /* Add this */
  height: 100px; /* Match container height */
}

.nav-link:hover {
  color: #efe3cb;
  transition: opacity 2s ease;
}

#toggleButton {
  cursor: pointer;
  color: #efe3cb;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

#toggleButton:hover {
  opacity: 0.8;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(3, 279px);
  gap: 3rem;
  justify-content: center;
}

.album-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.album-cover {
  width: 279px;
  height: 277px;
  object-fit: cover;
  border-radius: 4px;
  transform: scale(0.9); /* Start smaller */
  opacity: 0;
  animation: zoomIn 1s ease-out forwards;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.album-button {
  padding: 0.8rem 1.5rem;
  background-color: #efe3cb;
  color: #191a16;
  text-decoration: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-family: 'Bodoni Moda', serif;
  font-size: 22px;
}

.album-button:hover {
  background-color: #191a16;
  color: #efe3cb;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .nav-link {
    padding: 12px 0;
    font-size: 20px;
    width: 100%;
    margin: 5px 0;
    justify-content: center; /* Add this */
    height: auto; /* Add this */
    min-height: 50px; /* Add this */
  }
  
  #nav-links {
    flex-direction: column;
    padding: 10px 0;
    width: 100%;
  }

  #second-container {
    height: auto;
    padding: 40px 20px;
  }

  .champ {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transform: scale(1.5);
  }

  #first-container {
    flex-direction: column;
    align-items: center;
  }

  .inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;

  }

  .title {
    position: static;
    transform: none;
    order: -1;
    font-size: 48px;
    width: 100%;
    text-align: center;
  }

  .icons-container {
    display: flex; /* Change from grid to flex */
    flex-wrap: nowrap; /* Prevent wrapping */
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 5px auto 0;
    overflow-x: auto; /* Allow horizontal scrolling */
    padding: 10px 0; /* Add some padding for better touch scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  .icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0; /* Prevent icons from shrinking */
    display: block;
    margin: 0 auto;
  }

  .text-overlay {
    font-size: 16px;
    max-width: 300px;
    padding: 15px;
  }

  .albums-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    justify-content: center;
  }

  .album-item {
    width: 100%;
  }

  .album-button {
    width: 100%;
    justify-content: center;
    font-size: 24px;
  }
}

.cardo-regular {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-style: normal;
}

.cardo-bold {
  font-family: "Cardo", serif;
  font-weight: 700;
  font-style: normal;
}

.cardo-regular-italic {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-style: italic;
}

.rozha-one-regular {
  font-family: "Rozha One", serif;
  font-weight: 400;
  font-style: normal;
}

.bodoni-moda-regular {
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  font-style: normal;
}

.text-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 400px;
  z-index: 2;
  padding: 20px;
  color: #efe3cb;
  font-family: 'Rozha One', serif;
  font-size: 18px;
  line-height: 1.5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 400px;
  z-index: 2;
  padding: 20px;
  color: #efe3cb;
  font-family: 'Rozha One', serif;
  font-size: 18px;
  line-height: 1.5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}



</pre></body></html>