/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/*------BASE------*/

body {
  color: #000000;
  font-family: "Courier", monospace;
  line-height: 1.5;
  background-image: url("/img/bg_grid.png");
  background-repeat: repeat;
  background-position: top left;
  background-attachment: fixed;
  }
  
.container {
  width: 50%;
  height: 50%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.photo {
  max-width: 400px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.photo img {
  max-width: 100%;
  display: block;
  margin: auto;
}

.gallery {
  max-width: 100%;
  margin-top: 80px;
}

.thumbnails {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.thumbnails img {
  max-height: 200px;
  max-width: 200px;
  margin: 10px;
}

.thumbnails a:hover {
  cursor:crosshair;
}

.text {
  position: relative;
  width: 90%;
  height: 90%;
  margin: 10px auto 10px auto;
  }

.text p {
 text-align: center;
 padding: 10px;
}

.text a {
  color: #151B8D;
  text-decoration: none;
}

.text a:hover {
  color: #FFFFFF;
  background-color: #151B8D;
  text-decoration: none;
  cursor:default;
}

.text h1 {
  font-weight: boldl;
  font-size: 18px;
  letter-spacing: 6px;
  color: #000000;
  line-height: 1em;
  text-align: center;
  text-transform: uppercase;
  padding: 0px;
}

#linkspace {
  padding-left: 5px;
  padding-right: 5px;
}


@media (max-width: 500px) {
  
.container {
  width: 90%;
  height: 90%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

