/* General Page Setup */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-image: url('images/sunsetclouds.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative;
}

/* Main Title */
h1 {
    font-size: 3em;
    position: absolute;
    top: 40%; /* Adjust this value to move the header up or down */
    width: 100%;
    text-align: center;
    z-index: 2;
    margin: 0; /* Remove margins for better control */
}

/* Container for Channels */
.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 100px; /* Space the channels container from the top */
}
/* Remove underline and make the whole channel clickable */
.menu a {
    text-decoration: none;
}

.menu a:hover {
    cursor: pointer;
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
  body {
    padding: 10px;
    font-size: 1rem;
  }
  .container, .content, .blog-entries, .song-list-container {
    max-width: 100vw;
    width: 98vw;
    padding: 8px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  h1 {
    font-size: 1.3rem;
  }
  .home {
    position: static;
    margin-top: 20px;
    left: unset;
    top: unset;
    text-align: center;
  }
  .imgsource {
    position: static;
    margin-top: 20px;
    left: unset;
    bottom: unset;
    text-align: center;
  }
  .song-list button,
  .blog-list button,
  #queue-controls button,
  #startButton {
    font-size: 1rem;
    padding: 8px 12px;
  }
  .menu {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }
  .channel {
    width: 90vw;
    height: auto;
    margin: 10px auto;
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px;
  }
  .channel img {
    width: 48px;
    height: 48px;
    margin-right: 12px;
  }
  .label {
    font-size: 1rem;
  }
  #audio-controls audio {
    max-width: 100vw;
  }
  #queue-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}
