body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  h1 {
    margin-bottom: 1rem;
  }
  
  #thirdRockRadioPlayer {
    width: 100%;
    height: 400px;
    border: none;
  }
  
  .fansite {
    margin-top: 1rem;
  }
  
  .fansite a {
    color: #000;
    text-decoration: underline;
  }
  
  .fansite a:hover {
    color: #666;
    text-decoration: underline;
  }
  
  /* Media query for desktop devices */
  @media (min-width: 992px) {
    .container {
      width: 80%;
    }
  }
  