/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
   background-image: url('https://boomerfm.us/zoomer/peach_monster.png');
   background-position: right bottom ;
   background-repeat: no-repeat;
   background-size: 15em auto;
   background-attachment: fixed;
   font-family: arial;
   animation: bgColor 50s infinite linear;
}

@keyframes bgColor {
  10% {
    background-color: #a43535;
  }
  20% {
    background-color: #ff7b00;
  }
  30% {
    background-color: #ffff51;
  }
  40% {
    background-color: #a7ff4e;
  }
  50% {
    background-color: #7addfe;
  }
  60% {
    background-color: #6b6bfd;
  }
  70% {
    background-color: #ca61ff;
  }
  80% {
    background-color: #ff54af;
  }
  90% {
    background-color: #f3bbff;
  }
}

.container {
  border: solid 2px black;
  width: 700px;
  margin: auto;
  padding: 10px;
  background-color: white;
  box-shadow: 5px 7px 3px;
}

.player {
  
}

.logo {
  font-size: 95px;
  margin: 0px 45px;
  font-family: Impact;
}

.footer {
float: right;
  margin: -2px 0px;
  background-color: white;
  border-bottom: solid 2px black;
  border-right: solid 2px black;
  border-left: solid 2px black;
  padding: 3px;
  box-shadow: 5px 4px 3px;
}

.wrapper {
  width: fit-content;
  margin: 76px auto;
}

.tune-in {
  border-top: solid 2px black;
  border-right: solid 2px black;
  border-left: solid 2px black;
  width: fit-content;
  padding: 5px;
}

.np {
margin: auto 30px auto;
  font-size: 20px;
  width: 450px;
  text-align: center;
  word-wrap: break-word;
}

#time {
 font-size: 30px; 
}