#content {
  background: rgba(0, 0, 0, 0.8); }

#gallery-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly; }
  #gallery-box img {
    width: 200px;
    height: 200px;
    margin: 20px 5px;
    background: lightgray;
    -webkit-transition: 100ms;
    transition: 100ms; }
    #gallery-box img:hover {
      -webkit-transform: scale(1.05);
              transform: scale(1.05); }
    #gallery-box img:active {
      -webkit-transform: scale(1.02);
              transform: scale(1.02); }

#show-off {
  position: fixed;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.8); }
  #show-off img {
    margin-top: 0;
    max-width: 90vw;
    max-height: 90vh;
    background: rgba(255, 255, 255, 0.5); }
  #show-off .arrows {
    position: absolute;
    bottom: 40%;
    width: 70px;
    height: 70px;
    border: 1px solid white;
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.6);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: 100ms;
    transition: 100ms; }
    #show-off .arrows:hover {
      background-color: rgba(0, 0, 0, 0.8);
      -webkit-transition: 50ms;
      transition: 50ms; }
  #show-off #left {
    left: 10px;
    background-image: url("../pics/arrow-left.png"); }
    #show-off #left:hover {
      -webkit-transform: scale(1.05);
              transform: scale(1.05);
      background-color: rgba(0, 0, 0, 0.8); }
    #show-off #left:active {
      -webkit-transform: scale(0.95);
              transform: scale(0.95); }
  #show-off #right {
    right: 10px;
    background-image: url("../pics/arrow-right.png"); }
    #show-off #right:hover {
      -webkit-transform: scale(1.05);
              transform: scale(1.05);
      background-color: rgba(0, 0, 0, 0.8); }
    #show-off #right:active {
      -webkit-transform: scale(0.95);
              transform: scale(0.95); }
  #show-off #exit {
    position: absolute;
    top: 40px;
    right: 10px;
    width: 70px;
    height: 70px;
    border-radius: 40px;
    border: 1px solid white;
    background: rgba(0, 0, 0, 0.6);
    background-image: url("../pics/exit.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: 100ms;
    transition: 100ms; }
    #show-off #exit:hover {
      -webkit-transform: scale(1.05);
              transform: scale(1.05);
      background-color: rgba(0, 0, 0, 0.8);
      -webkit-transition: 50ms;
      transition: 50ms; }
    #show-off #exit:active {
      -webkit-transform: scale(0.95);
              transform: scale(0.95); }

/*CLASSESS*/
.hidden {
  display: none; }

.hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  background-color: rgba(0, 0, 0, 0.8); }

.active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95); }

/*MOBILE PORTRAIT*/
@media screen and (max-width: 980px) {
  #show-off .arrows {
    bottom: 22%; }
  #show-off #exit {
    top: initial;
    bottom: 20px;
    left: 45%; }
  #show-off img {
    margin-top: -70px;
    max-width: 90vw;
    max-height: 75vh; } }
