ul {
  list-style-type: none;
  padding: 0;
}

body {
    font-family: 'Trispace', monospace;
    margin: 15px;
    background-color: rgb(25, 25, 25);
    color: #fff;
}

a {
    text-decoration: none;
}

a:visited, a:active, a:link {
  color: #fff;
}

a:hover {
    color: rgb(14, 226, 187);
}

h1 {
  margin: 0;
  font-size: 60px;
}


.coverArt {
  position: relative;
  height: 300px;
  width: 300px;
}


img {
  display: block;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); 
  font-size: 18px;
  height: 100%;
  width: 100%;
  display: none;
  text-align: center;
  justify-content: center;
  align-items: center;
}

@media (max-width: 700px) {
  h1 {
    font-size: 15vw;
  }
}