
body {
    background: linear-gradient(to bottom, #0d0317, #130224);
    margin: 0; 
    min-height: 100vh; 
}

h1,
h2,
h3,
h4,
h5,
a,
label,
span,
p,
button {
    font-family: 'Lato', sans-serif;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


.listen-button {
    animation: pulse 10s infinite;
}


.logo-placeholder {
    background-color: transparent;
}


.about{
    text-align: center;
    max-width: 910px !important;  
    margin: 0 auto; 
    padding: 30px; 
}

.subtitle{
    font-size: 2rem;
    margin-bottom: 5px;
}

.about__paragraph{
    font-size: 20px;
    line-height: 1.7;
}

.about__main{
    padding-top: 70px;
    font-size: 19px;
    display: grid;
    width: 90%;
    margin: 0 auto;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit,minmax(260px, auto));
}

.about__icons{
    display: grid;
    gap: 1em;
    justify-items: center;
    width: 260px;
    overflow: hidden;
    margin: 0 auto;

}

.about__icon{
    width: 40px;
}

.banner-img{
    width: 50rem; 
    height: 5rem; 
}


.logo-img {
    width: 7rem; 
    height: auto; 
}

.audio-player {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.audio-card {
    background-color: #ffffff; 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.radio-logo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}



#playBtn {
    transition: transform 0.8s ease-in-out;
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.5);
}

#playBtn.clicked {
    transform: rotate(360deg);
}

#playBtn:active {
    transform: scale(0.9);
}

#volumeControl {
    transition: box-shadow 0.3s ease-in-out;
}

#volumeControl:hover {
    box-shadow: inset 0 0 7px rgba(255, 255, 255, 0.5);
}

.input-email-label {
    box-sizing: border-box;
  }

