h1 {
  font-size: 36px;
  color: #333;
  text-align: center;
  margin-top: 50px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-top: 50px;
}

.artist {
  max-width: 400px;
  flex: 1 0 300px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.artist:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.artist img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  align-self: flex-start;
}

.artist h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.artist p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.artist a {
  display: block;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background-color: #333;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.artist a:hover {
  background-color: #666;
}

