/*The default*/
.content_space img {
  display:block;
  width:auto;
  max-width:100%;
}

/*Resume*/
.resume img {
  max-height:none;
  width:800px;
  max-width:100%;
  margin-left:auto;
  margin-right:auto;
}

/*Full width unless that would make it too tall*/
.full-width-unless-tall {
  max-height: 300px;
  width:100%;
  margin-left:auto;
  margin-right:auto;
}

/*Full Width with Vertical Overflow if Need Be*/
.full-width-img {
  overflow:hidden;
  width:100%;
  max-height:300px;
  margin-left:auto;
  margin-right:auto;
}

.full-width-img img {
  width:100%;
}

/* Centered Background Image - must add the url in the style tag */
.centered-bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

/*Thirds Gallery*/
.gallery-container {
  text-align:center;
}

.gallery-box {
  display:inline-block;
  vertical-align:top;
  width:30%;
  margin:2px;
  max-height:300px;
  overflow:auto;
}

.gallery-fullscreen {
  position:fixed;
  display: flex;
  align-items: center;
  z-index:1000;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgb(0,0,0);
  background-color:rgba(0,0,0,0.5);
}

.gallery-fullscreen img {
  display:block;
  margin:5% auto;
  max-height:80%;
  max-width:80%;
}
