
body {
  background: url(/backgrounds/qaj50012.jpg);
  background-repeat: repeat;
  background-size: 190px;
  font-family: "Martian Mono", monospace;
      text-align: center;
    
    display: flex;
flex-direction: column;
overflow: scroll;
  }
  
   .center {
    margin: auto;
  background: white;
  width: 85%;
  border: 5px black;
  padding: 20px;
  text-align: center;
}



#borderimg { 
  border: 10px solid transparent;
  padding: 10px;
  border-image: url(page2background.png) 30 round;
}






.row {
  display: flex;
  flex-wrap: wrap;
  padding: 1px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 33.3333%;
  max-width: 33.3333%;
  padding: 1px;
}

.column img {
  margin-top: 1px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    margin: auto;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    margin: auto;
    flex: 100%;
    max-width: 100%;
  }
}