body {
  display: flex;
  align-content: center;
  justify-content: center;
  min-height: calc(100vh - 60px);
  background: #000;
  background-image: url(https://the-mob-museum.s3.amazonaws.com/share/test/f1/SpeakeasyDoor_background.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 60px;
}

.wrap {
  width: 100%;
  max-width: 1000px;  /*  ORIGINALLY WAS 900px  */
  margin: auto;
}

@keyframes doorWiggles {
  0% {
    transform: translateX(1%);
  }
  60% {
    transform: translateX(3.5%);
  }
  100% {
    transform: translateX(1%);
  }
}
@keyframes ThePasswordTextGlow {
  0% {
    opacity: 0.85;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.85;
  }
}
@keyframes ThePasswordTextShine {
  to {
    background-position: 200% center;
  }
}
.doorSlideUGLogo {
  text-align: center;
  width: 50%;
  margin: 0em auto 2em;
}
.doorSlideUGLogo img {
  width: 0%;  /*  WAS 100%, CHANGED TO 0% TO REMOVE IMAGE  */
}

.doorSlideMainWrap .doorSlideLabel {
  touch-action: none;
}
.doorSlideMainWrap img {
  max-width: 100%;
}
.doorSlideMainWrap .doorSlideInput {
  display: none;
}
.doorSlideMainWrap .doorSlideTheDoor {
  position: relative;
  cursor: pointer;
}
.doorSlideMainWrap .doorSlideTheDoor .doorSlideTheInside {
  position: absolute;
  inset: 0;
}
.doorSlideMainWrap .doorSlideTheDoor .doorSlideTheInside.doorSlideTheSlider {
  z-index: -1;
  overflow: hidden;
  transform: scale(0.95);
}
.doorSlideMainWrap .doorSlideTheDoor .doorSlideTheInside.doorSlideTheSlider img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  animation-play-state: paused;
}
.doorSlideMainWrap .doorSlideTheDoor .doorSlideTheInside.doorSlideTheSlider img.doorWiggles {
  animation: doorWiggles 2.78s infinite;
}
.doorSlideMainWrap .doorSlideTheDoor .doorSlideTheInside img {
  position: relative;
}
.doorSlideMainWrap .doorSlideTheDoor .doorSlideTheText {
  color: #948874;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: speakeasy-flare, serif;
  font-weight: 900;
  letter-spacing: 1px;
  z-index: -2;
  background: #000;
  transform: scale(0.9);
  margin-top: 5%;
  margin-bottom: 5%;
}
.doorSlideMainWrap .doorSlideTheDoor .doorSlideTheText .doorSlideTheTextWrap {
  animation: ThePasswordTextGlow 2.75s infinite;
  font-size: 20px;  /* REMOVED THIS TO KEEP FONT READABLE ON ALL DEVICES:  calc(clamp(16px, 2vw, 3.5rem) + 12%);  */
  left: 5%;
  position: absolute;
  transition-property: left, right;
  transition-duration: 0.75s;
  transition-timing-function: ease-in-out;
  transition-delay: 1s;
}
.doorSlideMainWrap input.doorSlideInput:checked + .doorSlideTheDoor .doorSlideTheText {
  opacity: 1 !important;
  animation: unset;
  padding-left: 0;
  color: #fff;
}
.doorSlideMainWrap input.doorSlideInput:checked + .doorSlideTheDoor .doorSlideTheText .doorSlideTheTextWrap {
  animation: unset;
  left: 30%;
  transition-delay: 0s;
  transition-duration: 0s;
}
.doorSlideMainWrap input.doorSlideInput:checked + .doorSlideTheDoor .doorSlideTheText .doorSlideTheTextWrap #ThePasswordText {
  background: linear-gradient(to right, #e5c891 10%, #7a603f 30%, #e5c891 50%, #7a603f 70%, #e5c891 100%);
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ThePasswordTextShine 8s linear infinite;
}
.doorSlideMainWrap .doorSlideWordImage {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.doorSlideMainWrap .doorSlideWordImage span {
  font-family: speakeasy-flare, serif;
  font-weight: 900;
  color: #ddc057;
  font-size: 1em;
}
.doorSlideMainWrap .doorSlideWordImage img {
  width: 55%;
}

@media only screen and (min-width: 768px) {
  .doorSlideMainWrap {
    display: flex;
  }
  .doorSlideMainWrap .doorSlideLabel {
    width: 50%;
  }
  .doorSlideMainWrap .doorSlideWordImage {
    width: 25%;
  }
  .doorSlideMainWrap .doorSlideWordImage img {
    object-fit: contain;
  }
  .doorSlideMainWrap .doorSlideTheTextWrap {
    font-size: 20px; /*  REMOVED THIS TO KEEP FONT READABLE ON ALL DEVICES:   calc(clamp(16px, 4vw, 1.75rem) + 13%) !important;  */
  }
  .doorSlideMainWrap .doorSlideWordImage img {
    width: 100%;
  }
  .doorSlideMainWrap .doorSlideWordImage.doorSlideWordImageAway {
    position: relative;
    left: -7%;
    z-index: -2;
  }
}
/**
BACKGROUND
**/
.thebackgrounds {
  height: 0px;  /*  WAS 56px, CHANGED TO 0px TO REMOVE IMAGE  */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.thebackgrounds div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*
.thebackgrounds div {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
  border: 3px solid #fff;
  transition: all 300ms ease;
  margin: 0 1em;
  transform: scale(0.7);
}
.thebackgrounds div:hover {
  border-color: #000;
  cursor: pointer;
  transform: scale(1);
}
**/