

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: black;
  color: blue;
}

header {
  padding: 20px;
}

h1 {
  font-size: 18px;
  margin: 0;
}

.albums {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.album {
  text-decoration: none;
  color: pink;
}

.album img {
  width: 100%;
  display: block;
}

.album-title {
  margin-top: 6px;
  font-size: 14px;
}

.albums {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;     /* centers vertically (optional) */
  gap: 20px;               /* space between albums */
  flex-wrap: wrap;         /* lets them move to next row if needed */
  text-align: center;
}

.album {
  display: block;
  text-decoration: none;
}

.album img {
  width: 200px; /* adjust if you want */
  height: auto;
  display: block;
}

.centered-div {
  width: 500%;
  text-align: center;
  margin-top: 20px;
}

.albums {
  display: flex;
  justify-content: center;
  gap: 40px;   /* bigger space between albums */
  padding: 40px;
  flex-wrap: wrap;
}
