body{
    background-color: white;
}

.art-section {
  max-width: 950px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Roboto', sans-serif;
}

.art-section h1 {
  font-size: 3rem;
  text-align: center;
  font-weight: 700;
}

.art-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin: 20px 0;
}

.art-section h3, .art-section h4 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.author-image {
  text-align: center;
  margin: 20px 0;
}

.author-image img {
  max-width: 300px;
  border-radius: 4px;
  width: 100%;
  height: auto;
}

.curatorial-text {
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 30px;
}

.curatorial-text p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.artworks {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.artworks img {
  width: calc(33.333% - 10px);
  border-radius: 4px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .artworks img {
    width: 100%;
  }

  .art-section h1 {
    font-size: 1.6rem;
  }

  .art-section h2 {
    font-size: 1.1rem;
  }
}
