body {
  background-image: url("/gallerybg.jpg");
  color: white;
  font-family: Courier;
  }
 
  h1 {
  text-align: center;
  }

  h2 {
  text-align: center;
  text-shadow: 2px 2px #515151;
  }

  h3 {
  text-align: center;
  }
  
  a:link {
  color: #AAAAFF;
  text-decoration: none;
  }
  a:visited {
  color: #FFAAFF;
  text-decoration: none;
  }
  a:hover {
  color: #FFAAFF;
  text-decoration: underline;
  }
  
  p {
  text-align: center;
  }
  
  
  ul {
  text-align: center;
  list-style-type: square;
  list-style-position: inside;
  }
  
  
  div { 
  display: flex; 
  align-items: center;  
  } 
  
    
  * {
  box-sizing: border-box;
  }
  
  .column {
  float: left;
  width: 100%;
  padding: 0 10px;
  }
  
  .row {
    margin: 0 20px;
    position: relative;
  }
  
  .row:after {
  content: "";
  display: table;
  clear: both;
  }
  
  .card {
  box-shadow: 0 4px 8px 0 #222222; /* this adds the "card" effect */
  padding: 8px;
  text-align: center;
  background-color: #919191;
  margin: auto;
  }
    
