@import url('https://fonts.googleapis.com/css2?family=Space+Mono&family=Nothing+You+Could+Do&display=swap');

body {
  background-image: url('https://i.ibb.co/yY2t2Lb/filmgrain.jpg'); /* change this to whatever you want */
  background-size: cover;
  background-attachment: fixed;
  font-family: 'Space Mono', monospace;
  color: #fefefe;
  text-align: center;
  padding: 3em;
  backdrop-filter: blur(3px);
}

.container {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2em;
  border-radius: 15px;
  max-width: 800px;
  margin: auto;
}

h1 {
  font-family: 'Nothing You Could Do', cursive;
  font-size: 2em;
  margin-bottom: 1em;
  color: #ffcad4;
}

.intro {
  font-style: italic;
  margin-bottom: 2em;
  color: #e0e0e0;
}

.links a {
  display: inline-block;
  margin: 0.5em;
  color: #ffd6e0;
  text-decoration: none;
  font-size: 1.2em;
  border-bottom: 1px dashed #ffd6e0;
}

.links a:hover {
  color: #ffffff;
  border-bottom: 1px solid white;
}

.playlist-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 2em;
}

.playlist-grid img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000088;
}

footer {
  margin-top: 3em;
  font-size: 0.8em;
  color: #aaa;
}
