/* hi this makes the website look more appealing and better than the same old font with a white background. that's BORING. */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  line-height: 1.8;
  padding: 2rem;
  text-shadow: 0 0 2px #fff;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Headings */
h1, h2, h3 {
  margin-bottom: 1rem;
  
}

/* Navigation */
nav {
  margin: 2rem 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  border-bottom: 2px solid white;
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 0.6;
}

/* Boxes for Downloads or Song Covers */
.box {
  border: 2px solid white;
  background-color: #111;
  padding: 1rem;
  margin: 2rem auto;
  width: 80%;
  box-shadow: 0 0 10px white;
}

/* Footer */
footer {
  margin-top: 4rem;
  font-size: 10px;
  opacity: 0.4;
  text-align: center;
}
