.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: relative;
}

.container:nth-child(1) {
  background: #fff;
}

.container:nth-child(2) {
  background: #bcb8ad;
}

.container:nth-child(3) {
  background: #b69187;
}

.container:nth-child(4) {
  background: #3c564f;
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
}

.reveal {
  visibility: hidden;
  position: relative;
  width: 60%;
  overflow: hidden;
}

.reveal img {
  max-width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.credit {
  font-family: Termina, sans-serif;
  position: absolute;
  bottom: 10px;
}
.credit a {
  color: white;
}

@media screen and (max-width: 800px) {
  .reveal {
  visibility: hidden;
  position: relative;
  width: 80%;
  overflow: hidden;
  }
}