body {
    font-family: "Courier Prime", monospace;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #333;
  }
  
  header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
  }
  header h1 {
    font-family: "Ubuntu Mono", monospace;
    font-size: 4rem; /* Adjust size as needed */
    font-weight: bold;
    text-transform: lowercase; /* Optional: Makes text uppercase */
    background: repeating-linear-gradient(
      0deg, /* Horizontal stripes */
      white,
      white 1px,
      #333 2px,
      #333 4px
    ); /* Alternates white and dark grey */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Makes the background visible only on the text */
    text-align: center; /* Optional: Center the text */
  }
  section h2 {
    position: absolute; /* Float the heading over the border */
    top: -12px; /* Adjust to fit over the top border */
    left: 20px; /* Adjust horizontally */
    background-color: #333; /* Match the background color */
    color: white; /* Text color */
    padding: 1px;
    margin: 1px; /* Space around the heading text */
    font-family: "Ubuntu Mono", monospace; /* Optional: Match the font style */
    font-size: 1.5rem; /* Adjust size as needed */
    
  }
  
  header nav ul {
    list-style: none;
    padding: 0;
  }
  
  header nav ul li {
    display: inline;
    margin: 0 10px;
  }
  
  header nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  section {
    border: 2px solid white; /* Add border around the section */
    padding: 20px; /* Space inside the border */
    margin-bottom: 20px; /* Space between sections */
    position: relative; /* Ensures the heading aligns well */
    margin: 20px auto;
    max-width: 800px;
    color: #fff;
    margin-top: 5px;
  }
  
  footer {
    text-align: right;
    padding: 10px 0;
    background: #333;
    color: #fff;
    margin-right: 100px;
  }
  .image-container {
    text-align: center; /* Centers inline content horizontally */
  }
  
  .image-container img {
    max-width: 100%; /* Optional: Prevents image from overflowing the container */
    height: auto; /* Maintain aspect ratio */
  }
/* Ensure code blocks are readable */
pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-x: auto;
  padding: 10px;
  padding-left: 5px;
  margin-left: 0px;
  background-color: #2d2d2d;
  color: #f8f8f2;
  border-radius: 5px;
}

code {
  font-family: "Courier New", Courier, monospace;
  line-height: 1.5;
}
/* Style for normal links */
a {
  color: #66ccff; /* Light blue or any color you prefer */
  text-decoration: none; /* Removes the underline */
}

/* Style for links on hover */
a:hover {
  color: #ffcc00; /* Highlight color when hovering */
  text-decoration: underline; /* Optionally underline on hover */
}

#favorite-song {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 250px;
  padding: 12px;
  background: #333;
  color: white;
  font-family: 'Ubuntu Mono', monospace;
  border: 2px solid white;
  border-radius: 0px;
  box-shadow: none;
  z-index: 1000;
}

#favorite-song p {
  margin: 0;
  padding: 0;
}


#album-cover {
  width: 80px;
  height: 80px;
  border-radius: 3px;
  margin-right: 10px;
}

#song-details {
  font-size: 14px;
  line-height: 1.4;
}

#song-container {
  display: flex;
  align-items: center;
}

#song-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
}

#toggle-song {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
  display: none; 
}

@media (max-width: 768px) {
  #toggle-song {
    display: block; /* Make visible on mobile */
  }
}

@media (max-width: 768px) {
  #favorite-song {
    width: auto;
    right: 10px;
    left: 10px;
    top: 5px;
    padding: 6px
  }
  
  #song-container.collapsed {
    display: none !important;
  }
  
  #toggle-song.collapsed {
    transform: rotate(180deg);
  }
}