:root{
    --background-color: #52575F;
    --darker-background-color: #213141;
    --accent-color: #240087;
    --text-color: #FFF;
    --link-color: #F00;  }


html{ height: 100%;}

body{ height: 100%; background-color: #52575F;}

h2 {margin: 3em; font-size: 1.5em; font-family: Cambria, Cochin, Georgia, Times; color:#000;  }

div.gallery {
  margin: 2em auto;
  padding-top: 2em;
  background-color: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2em;
}

div.gallery-item {
  margin: 5px;
  border: 1px solid #000;
  width: fit-content;
}

div.gallery-item:hover {
  border: 2px solid #888;
}

div.gallery-item img {
  width: 22em;
  height: auto;
}
/*
div.gallery-item div.desc {
  padding: 15px;
  text-align: center;
}
*/