/* 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." */
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
/* Above is the Font Awesome CSS to display the Pause and Play buttons! */
body {
  background: black
  }
h1 {
  text-align: center;
  color: white;
  padding: 10px;
  background: midnightblue;
}
p {
  color: white;
  text-align: center;
}
h2 {
  color: white;
  text-align: center;
  }
h5 {
  color: white;
  text-align: center;
  }
h4 {
  color: white;
  text-align: center;
  }
h3 {
  color: white;
  text-align: center;
}
a {
  color: white;
  text-align: center;
  }
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
ul {
  color:white;
  text-align:center;
  }
li {
  color:white;
  text-align:center;
  }
  
/* neonbandit music player css: */


p {
  font-family: monospace;
  margin: 10px 0;
  width: 100%;
  max-width: 500px;
  color: blueviolet;
}

h1 {
  font-family: monospace;
  color: darkblue;
  margin: 0;
}

/* ===== AUTOPLAY ===== */
.buttondiv {
  cursor: pointer;
  position: fixed;
  height: 35px;
  bottom: 5px;
  width: 35px;
  left: 5px;
  color: white;
  z-index: 1;
}

.autoplayer button {
  background: darkblue;
  cursor: pointer;
  color: white;
  border: none;
  padding: 1px 4px 0px 4px;
  font-size: 18px;
  position: fixed;
  height: 35px;
  bottom: 5px;
  width: 35px;
  left: 5px;
}

.autoplayer a {
  background: darkblue;
  color: white;
  text-decoration: none;
  padding: 2px 10px;
  position: fixed;
  font-size: 14px;
  bottom: 5px;
  z-index: 1;
  left: 50px;
  color: white;
}
