div.portfolioItemNavigation {
  width:100%;
  text-align: center;
}
.navRight, .navLeft {
  display: inline;
}
.navLeft { float: left; padding-left:100px; }
.navRight { float: right; padding-right:100px; }

.navRight a, .navLeft a {
  color: black;
  font-size: 2em;
  font-weight: bold;
}

.navRight a:hover, .navLeft a:hover, .ironwood a:hover {
  color: deepSkyBlue;
  cursor: pointer;
}

.title {
  display:inline;
}

@media not screen and (max-width: 992px) {
  img.homeImage {
    height: 25em;
  }

  img.portfolioImage {
    height: 15em;
  }
}
@media screen and (max-width: 992px) {
  img.homeImage {
	  width: 100%;
  }

  img.portfolioImage {
	  width: 100%;
  }
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 3% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
/*  width: 80%; */ /* Could be more or less, depending on screen size */
  max-width:900px;
  position: relative;
}

/* The Close Button */
.close {
  color: #aaa;
  position: absolute;
  top: -4px;
  right: 4px;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.buttonDiv {
  width:36px; height:40px;
  border:none;
  color:#fff; background-color:#000;
  cursor:pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:24px;
}
.buttonDiv:hover {color:#000!important; background-color:#ccc!important}
.buttonDiv.nav { height: 72px; }
.buttonDiv.close { position:relative; left:-36px; top: 0;}
	  
.modalContainer {
  display:none;
  position:fixed;
  z-index:1;
  left:0; top:0;
  width:100%; height:100%;
  overflow:auto;
  background-color:rgb(0,0,0); background-color:rgba(0,0,0,0.4);
  align-items: center;
  justify-content: center;
}

.centerDiv {
  display: flex;
  align-items: stretch;
}

.navDiv {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolioImageContainer {
  position: relative;
  display: inline-block;
  padding: 3px;
}

.portfolioImageDescription {
  position: absolute;
  bottom: 8px;
  left: 3px; right: 3px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 14px;
  padding: 10px;
  text-align: center;
}

.portfolioImageContainer:hover .portfolioImageDescription {
  opacity: 1;
}

.slideContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  width: 800px;
  object-fit:contain;
  padding: 10px;
}
	  
.slide {
  display:none;
  height: 600px;
  margin: 0;
  padding: 0;
  border: 2px solid black;
  border-radius: 6px;
}