@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
  font-family: 'Barlow Condensed', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}
header {
  background-color: #222;
  color: #fff;
  padding: 20px;
  text-align: center;
}
.album-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 20px;
  justify-items: center;
}
.album {
  position: relative;
  width: 200px;
  text-align: center;
  color: #fff;
}
.album img {
  width: 100%;
  height: auto;
  filter: blur(12px);
  transition: filter 0.3s;
  border-radius: 10px;
}
.album img:hover {
  filter: blur(0);
}
.album a {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.album a:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
}
