/* 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("images/star-bg.png");
  color: black;
  font-family: Verdana;
  animation: star-scroll 30s linear infinite;
  background-attachment: fixed;
}

h1 {
  color: white;
}

#navbar {
  height: 10%;
  width: 100%;
}

#playerbox {
  width:25%;
  height:25%;
  position: fixed;
  left: 75%;
  top: 40%;
  background-color: khaki;
}

#player {
  width:25%;
  height:25%;
  position: fixed;
  left: 75%;
  top: 40%;
}

#playingtitle {
  width:100%;
  height:10%;
}

#playingcover {
  height:65%;
  width:auto;
}

.navbutton {
    background-color: #dee219;
    color: rgb(0, 0, 0);
    width: 24%;
    height: 95%;
    border-radius: 20%;
}

.songbutton {
  width:5%;
  height: 5%;
}

.buttonicon {
  width:100%;
  height:100%;
}

.lighttext {
  color: white;
}

.lighth2  {
  color: white;
}

.projectbox {
  background-color: khaki;
  border: 2px black groove;
  width:70%;
  margin-left:5%;
}

.songbox {
  background-color: white;
  border: 1px grey solid;
}

.cover {
  padding-left:5%;
  width: 250px;
  height: 250px;
}

@keyframes star-scroll {
    0% {background-position: 0%;}
    100% {background-position-x: 1000px; background-position-y: 500px;}
}