body {
  background-color: black;
  color: white;
  font-family: Verdana;
  font-size: 16px;
  text-align: center;
  margin: 60px;
  line-height: 1.5;
}

.desc {
 border: 5px solid gray;
 border-radius: 10px;
 background-color: white;
 padding: 20px;
 margin: 20px;
 align-items: center;
 text-align: left;
 color: black;
}


/***
EZ Gallery by netfriend - https://netfriend.neocities.org/ez-gallery/
Released under the Unlicense - https://unlicense.org/
***/

.row { 
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin-bottom:12.5%;
}

.row img {
  max-width: 51%;
  padding: 3px;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 1000px) {
  body {
    font-size: 12px;
  }
   
  .row img {
  width: 51%;
  }
  
}