/* 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." */
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/*used to have dejavu sans mono on here...*/
body {
  background-color: #2D2D2D;
  color: white;
  font-family: 'Anonymous Pro',monospace, monospace;
  font-size:1.00em;
}

h1 {
  font-family: 'Bahnschrift', monospace;
  text-align: center;
  padding: 50px;
}

p {
  line-height: 1.5;
}

hr {
 margin: 1.5em auto 1.5em auto; 
}

hr.d {
  display: block;
  margin: 1.5em auto 1.5em auto; 
  border: 1px dashed;
  width: 100%;
}

hr.end {
  display: block;
  margin: 1.5em auto 1.5em auto; 
  border: 1px dashed;
  width: 25%;
}

 /* unvisited link */
a:link {
  color: #4B93CD;
}

/* visited link */
a:visited {
  color: #9C66BC;
}

/* mouse over link */
a:hover {
  color: #4C6FD5;
}

/* selected link */
a:active {
  color: #2658E7;
} 

.pager {
  margin-left:50px;
  margin-right:50px;
}

.pager img{
  max-width: 100%;
}

.imagepile {
  margin: 20px;
  text-align:center;
}

.griddle {
  display: grid;
  justify-content: center;
  grid-template-columns: auto auto auto;
  max-width:50%;
  padding:20px;
  grid-gap: 5px;
}

.gridit {
  background-color: black;
  border: 1px solid black;
  overflow:hidden;
  width: 250px;
  height: 175px;
}

@media only screen and (max-width: 750px) {
.griddle{
 max-width:100%; 
}
  
.gridit{
  width: 100%;
}

}

.thumb {
    width:100%;
    height:100%;
    object-fit: cover;
}

/* removed from gridit:
  display: flex;
  justify-content: center;
  align-items: center;
*/

/*
.gridit {
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  width: 200px;
  height: 300px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0;
}

.gridit img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
}

.gridit {
  background-color: black;
  border: 1px solid black;
  overflow:hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

*/

