body {
    margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: auto;
    background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgba(255,25,25,1) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}



.mainlogo{width:15vw; margin:100px auto 20px auto}
.mainlogo img{width:100%}


.social{text-align:center; color:#000; padding:30px 0}
.social a{color:#096bcd; text-decoration:none}
.social i{margin-top:10px; display:block; font-size:26px}

@media only screen and (max-width: 640px) {
.mainlogo{width:50vw; margin:150px auto 40px auto}
.mainlogo img{width:100%}

}





.radio-player{
  
  width: 4rem;
  height: 4rem;
  padding: 2rem;
  border: 0.2rem solid 2rem;
  border-radius: 50%;
  filter: drop-shadow(0 0 3.1rem rgba(255, 255, 255, 0.8));
  margin:0px auto;
  background-color:#ffd703 ;
  border:solid 10px #edd; text-align:center
}

button {
  margin: 0;
  padding: 0;
}

.play {
  height: 0;
  width: 0;
  margin-left: calc(2 * 0.14 * 2rem);
  /*margin-left: 17px;*/
  background: none;
  border: none;
  border-top: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
  border-left: calc(2rem * 2 * 0.86) solid #000;
}

.pause {
  position: relative;
  background: none;
  border: none;
  height: calc(2rem * 2);
  width: calc(2rem * 2 * 0.86);
}
.pause:before, .pause:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 33%;
  background: #000;
}
.pause:before {
  left: 0;
}
.pause:after {
  right: 0;
}

.hidden {
  display: none;
}








.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}


@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}
@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

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