

* {
box-sizing: border-box;
}


body {
    background: rgb(212, 60, 0) url(../images/backgrounds/redbg.gif);
    font-family: 'Times New Roman', Times, serif;
}


h1 {
    text-align: center;
    padding: 32px;
    color: #d3af37;
  }

  h2 {
    text-align: center;
    color: #d3af37;
    font-size: 30px;
  }
  
  
  .gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* justify-content: center; */
    align-items: center;
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
    padding:2px;
  }
  
  .painting {
    width: 100%;
    max-width: 350px;
    height: 300px;
    object-fit: contain;
  }
  
  .gallery::after {
    content: "";
    width: 150px;
  }
