.BLINK {
  animation: blinker 1s linear infinite; }

a {
  color: mediumspringgreen;
}

@keyframes blinker {
  0% { opacity: 1.0; }
  74% { opacity: 1.0; }
  75% { opacity: 0.0; }
  100% { opacity: 0.0; }
}
.rainbow {
  -webkit-animation: rainbow 1s infinite;
  -ms-animation: rainbow 1s infinite;
  -o-animation: rainbow 1s infinite;
  animation: rainbow 1s infinite;
}

@-webkit-keyframes rainbow {
  0% { color: violet; }
  33% { color: turquoise; }
  66% { color: mediumspringgreen; }
  100% { color: violet; }
}
@-ms-keyframes rainbow {
  0% { color: violet; }
  33% { color: turquoise; }
  66% { color: mediumspringgreen; }
  100% { color: violet; }
}
@-o-keyframes rainbow {
  0% { color: violet; }
  33% { color: turquoise; }
  66% { color: mediumspringgreen; }
  100% { color: violet; }
}
@keyframes rainbow {
  0% { color: violet; }
  33% { color: turquoise; }
  66% { color: mediumspringgreen; }
  100% { color: violet; }
}

* {
  color: #fff; }

body {
  background: rgba(100, 100, 100, 0.8) url(../music3.gif); 
}

main {
  max-width: 800px;
  background: rgba(0, 0, 0, 0.8);
  margin: 0 auto;
  padding: 0.25rem;
  overflow: hidden;
  border: 20px outset rgba(0, 0, 0, 0.8);}

#container {
  border: 1px solid black;
  padding: 0.5rem;
}

.header {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 auto;
  max-width: 90%;
  margin-bottom: 1rem; }

.header img {
  max-height: 8rem;
}

img#radio {
  position: absolute;
  left: 2.5rem;
}

img#computer {
  position: absolute;
  right: 0;
} 

.header #title {
  max-width: 50%;
  margin: auto;
}

#title h1 {
  color: violet;
  display: inline-block;
  width: 100%;
  font-style: italic;
  font-size: 2.3rem;
  text-align: center;
  text-shadow: 2px 2px 60px rgba(148, 0, 211, 0.8);
}

.marquee {
  font-style: italic;
  text-shadow: 2px 2px 10px;
  margin: 0.25rem auto; }

#player {
    margin: 1rem auto;
    max-width: 3rem;
}
#player #playpause {
    color: mediumspringgreen;
    cursor: pointer;
    text-shadow: 0px 0px 30px;
}

.rc-title,
.audio-player,
.m3u-link,
.social,
.studio-hotline {
  text-align: center;
  display: block; }

.news {
  padding: 1rem; }
  .news p {
    font-size: 0.9em; }

h2.subheading {
   font-style: italic;
   text-align: center;
   margin: 0.5rem auto;
   color: violet;
   text-shadow: 2px 2px 5px rgba(148, 0, 211, 0.5);
}

.turquoise {
   font-style: italic;
   text-align: center;
   margin: 0.5rem auto;
   color: rgb(64, 224, 208);
   text-shadow: 2px 2px 5px rgba(0, 206, 209, 0.5);
}

#calendar .fc-v-event {
   min-height: 18px;
}

.schedule {
  overflow: hidden;
  margin: 1rem 0; }
  .schedule .fc-time-grid .fc-slats td {
    height: 2.5em; }
  .schedule .fc-title {
    font-size: 0.8em;
    font-weight: bold; }

.guestbook-links {
  text-align: center; }

.rainbow-hr {
  width: 100%;
  height: 1px;
  margin: 0.5rem 0; }

.counter {
  text-align: center; }

.badges {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  margin: 1rem 0; }
  .badges a {
    padding: 0;
    margin: 0; }
  .badges img {
    width: 88px;
    height: 31px; }

/*# sourceMappingURL=main.css.map */
