/* 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." */

body {
  background-color: #222225;
  color: black;
  font-family: Verdana;
  margin:0;
}

p {white-space:pre-line; width:90%;}

.img-box {margin: 0 0;}
.img-box img {display: block; max-width:100%;}
.img-box a img:hover {outline: 2px dashed #467094;}

.no-click {pointer-events: none; opacity: .5;}

.container {
  background: white;
  border-radius: 25px;
  max-width: 750px;
  margin: 20px auto;
  overflow: hidden;
  padding-bottom: 1em;
}

.img-links {margin:1em 0;}

.preview-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: 0.2s all ease-in-out; 
}

.preview-box img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}

.sprite-box {
  display:block;
  transition: 0.2s all ease-in-out; 
}

.thumb-small {
  position: relative;
  overflow: hidden;
  transition: 0.2s all linear;
  min-width: 64px;
  min-height: 64px;
}

.thumb {
  position: relative;
  width: 15em;
  height: 15em;
  overflow: hidden;
  transition: 0.2s all linear;
}

.thumb:hover {opacity:75%;}


.thumb .portrait {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 800px) {
  .container {width:95%}  
  .thumb {width: 10em; height: 10em;}
}