body{
    background: linear-gradient(295deg, #191d1f, #c2c2c2, #7b7b7b);
    background-size: 600% 600%;

    -webkit-animation: AnimationName 26s ease infinite;
    -moz-animation: AnimationName 26s ease infinite;
    -o-animation: AnimationName 26s ease infinite;
    animation: AnimationName 26s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-o-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}


#albumArtwork {
    width: 174px; /* Set width to match the artwork dimensions */
    height: 174px; /* Set height to match the artwork dimensions */
    border-radius: 8px; /* Add some border radius for rounded corners */
    background-color: #f0f0f0; /* Set a background color */
    padding: 8px; /* Add padding around the artwork */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle box shadow */
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin: 0 auto; /* Auto margin for horizontal centering */
  }
  
  #albumArtwork img {
    max-width: 100%; /* Ensure the image fills the entire div */
    max-height: 100%; /* Ensure the image fills the entire div */
    border-radius: 4px; /* Add border radius to the image for rounded corners */
  }
  

.fa.fa-heart {
    color: rgb(223, 35, 35);
  }

.fa.fa-globe{
    color: rgb(41, 150, 37);
}



.container-fluid{
    margin-top: 10%;
}


footer {
    position: static;
    bottom: 0px;
    height: 100px;
  }









/* Add to your existing CSS file */

/* Frequency display */
.frequency-display {
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    font-weight: bold;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  /* Advertising section */
  .advertising-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .advertising-section h3 {
    color: #ffcc00;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .contact-info {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 400px;
  }
  
  .contact-info p {
    font-size: 1.2em;
    margin: 10px 0;
  }
  
  .contact-info a {
    color: #4dabf7;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .contact-info a:hover {
    color: #a5d8ff;
    text-decoration: underline;
  }
  
  .benefits p {
    margin: 10px 0;
    font-style: italic;
  }
  
  /* Icons */
  .fa-phone, .fa-envelope, .fa-check {
    margin-right: 10px;
    color: #ffcc00;
  }