body {
}

.div_artista {
  width: 685px;
}
.div_grabados {
  display: grid;
  grid-template-columns: repeat(2, 1.5fr 1fr); /* 3columns, each with equal width */
  gap: 10px;                             /* Space between grid items */
}
.div_grid {
  height: 155px;
  display: flex;
  justify-content: left;
  align-items: center;
}
.div_imagen {
  display: flex;
}
.div_imagen img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Show the entire image, maintaining aspect ratio */
}
.div_data {
}
/*
.div_artista {
  clear: both;
  border: 2px solid #333;
}
.div_grabado {
  clear: both;
  width: 800px;
  border: 2px solid #333;
}
.div_imagen {
  width: 200px;      /* Set the width of the container * /
  height: 162px;     /* Set the height of the container * /
  border: 2px solid #333;
  background-color: #f0f0f0;  /* Background color for empty space * /
  display: flex;
  justify-content: center;
  align-items: center;
}
.div_imagen img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Show the entire image, maintaining aspect ratio * /
}
.div_data {
  width: 390px;
  border: 2px solid #333;
}
