* {
  margin: 0;
}

.modalContainer {
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  position: fixed;
  align-content: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  border-style: solid;
  z-index: 200;
}

.imageFrame {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.8));
  align-self: center;
  justify-self: center;
  height: 80vh;
  max-width: 80vw;
  align-items: center;
}

.imageFrame .icon {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.8));
  position: absolute;
  top: 0%;
  left: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.imageFrame .icon:hover {
  transition: height 0.1s;
  transition: width 0.1s;
  height: 2.5vw;
  width: 2.5vw;
  filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 1));
  cursor: pointer;
}

.imageFrame .icon:not(:hover) {
  transition: height 0.1s;
  transition: width 0.1s;
  height: 2vw;
  width: 2vw;
}

#image {
  justify-self: center;
  height: 100%;
}

#modalImage {
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
