#imageOverlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center; }

#fullSizeImageContainer {
  position: relative;
  max-width: 90%;
  max-height: 90%; }

#fullSizeImage {
  background: var(--primary);
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }

#closeButton {
  background: var(--accent);
  height: 60px;
  width: 60px;
  position: absolute;
  top: 0;
  left: 0;
  margin: 10px;
  cursor: pointer;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.33s; }

#closeButton:hover {
  background: var(--darkgrey); }