/* CSS stylesheet for picture gallery */

div.gallery
{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-evenly;
  max-width: 60em;
  background: #eee;
  padding: 10px;
}

div.gallery h3
{
  width: 100%;
}

div.thumb
{
  width: 200px;
  height: 200px;
  text-align: center;
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


div.galpic
{
  max-width: 800px;
}

div.galpic div.buttons
{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto 10px;
}

div.galpic div.buttons form { margin: auto }

div.galpic img
{
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: auto;
}

