* {
  font-family: "Libre Baskerville", serif;
}

h1 {
  text-align: center;
  margin: 50px;
  text-decoration: underline;
}

h2 {
  text-align: right;
  font-size: 24px;
}

a {
  color: black;
  text-decoration: none;
}

.collection-covers {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin: 50px;
}

.collection-covers img {
  width: 450px;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.collection-covers img:hover {
  transform: scale(1.05);
}