.station-description {
    color: #fff;
    opacity: 0.8;
}
.song-artist {
    font-size: x-large;
}
.song-name {
    font-size: large;
    text-transform: capitalize;
}
.station-img {
    border: 3px solid #ffffff00;
    padding: 0.15rem;
}
.player-artwork {
    padding: 0.35rem;
    border-radius: 1rem;
    background-color: #ffffff00;
}
.player-artwork img {
    border-radius: 0.65rem;
    box-shadow: var(--shadow-xl);
}
.player-cover-image {
    animation: bga 60s linear infinite;
}
@keyframes bga {
    50% {
        transform: scale(2);
    }
}
.items-start {
    align-items: flex-start;
    margin-top: 15px;
}
.header-logo-img {
    border-radius:15px;
    width: 80px;
    height: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.show-on-air {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
}
.show.on.air iframe {
    width: 300px;
    height: 80px;
    border: none;
    display: block;
    margin: 0;
}
.fieldset, iframe {
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.button-container {
      margin-bottom: 5px;
  }
button, #newsButton {
      padding: 10px 20px;
      background-color: rgba(0, 0, 0, 0.6);
      color: white;
      border: none;
      border-radius: 15px;
      cursor: pointer;
      font-size: 16px;
      display: inline-block;
      transition: background-color 0.3s ease;
}

    button:hover, #newsButton:hover {
      background-color: #ffea00;
      color: black;
}

    button:active, #newsButton:active {
      background-color: #ffea00;
      color: black;
}

