button {
  border-radius: 4rem;
  border: none;
  cursor: pointer;
  padding: 5px 20px;
  background-color: #99d98c;
}

a {
  margin: 0px 5px;
  color: #184e77;
}

#mainContainer {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #168aad;
  overflow: hidden;
}

.orbContainer {
  position: absolute;
  height: 7rem;
  width: 7rem;
}


.imgContainer {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: 6px solid #99d98c;
  cursor: pointer;
  box-shadow: 5px 5px 5px 5px  rgb(0 0 0 / 50%);
}

.imgContainer img {
  max-width: 105%;
}

.hoverBlurb {
  position: absolute;
  background-color: #52b69a;
  width: 10rem;
  height: 100%;
  padding: 6px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4rem;
  box-shadow: 5px 5px 5px 5px  rgb(0 0 0 / 50%);
}

.hoverBlurb div {
  margin: 3px;
  text-align: center;
}

.hoverBlurb button {
  margin-top: 3px;
}

.hoverBlurbLeft {
  right: 0%;
  padding-right: 8rem;
  padding-left: 2.5rem;
  display: flex;
}

.hoverBlurbRight {
  padding-left: 8rem;
  padding-right: 2.5rem;
  display: flex;
}

.popup {
  display: none;
  position: absolute;
  width: 50%;
  min-height: 50%;
  max-height: 80%;
  margin: 0 auto;
  background: white;
  border: 5px solid #34a0a4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 1rem;
  overflow: auto;
  border-radius: 1rem;
}

.popupInner {
  margin: auto;
}

.popupInner div {
  padding: 1rem;
}

.popup button {
  margin: 1rem;
  padding: 1rem 2rem;
  background-color: #34a0a4;
  color: white;
}

.popupContainer {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.75);
}

.showPopup {
  display: flex;
  flex-direction: column;
  z-index: 3;
}

.slider {
  opacity: 0.7;
  margin-top: 0.5rem;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  cursor: pointer;
}

.sliderContainer {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem;
  border: 3px solid #1e6091;
  border-radius: 1rem;
  background: #99d98c;
}

#reverse {
  background-color: #168aad;
  margin-top: 10px;
  color: white;
}

.front {
  z-index: 2;
}

.front .imgContainer {
  box-shadow: none;
}

.unicorn {
  margin-left: 8px;
}

@media only screen and (max-width: 500px) {
  .popup {
    width: 70%;
  }
}
