body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-image: url('images/hills.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;
}

.container{
    text-decoration: none;
    color:darkgrey;
}

.content{
    text-decoration: none;
    color:rgb(55, 0, 107);

}

.imgsource{
    position: absolute;
    left: 10px;
    bottom: 10px;

}

.imgsource a {
    text-decoration: none;
    color: #00406B;
}

.imgsource a:hover {
    cursor: pointer;
}
 
.home{
    position: absolute;
    left: 20px;
    top: 0px;
}


.home a {
    text-decoration: none;
    color: #23008c;
}

.home a:hover {
    cursor: pointer;
}
.container{

    text-decoration:none;
    color: #000000;
}
.content{

    text-decoration:none;
    color: #000000;
    background-color: #0078b496;
}

/* 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;
  }
}