:root {
  --background-color: rgb(201, 222, 195);
  --parallax-container: #ffcdd2;
  --radialGradient2: #4f3341;
  --controlsGrey: rgb(153, 153, 153);
  --selectionBackground: rgb(215, 129, 129); 
}
html {
  background-color: var(--background-color);
  padding: 0;
  margin: 0;
  font-size: 62.5%;
}
body {
  padding: 0;
  margin: 0;
  height: 1200px;
}
.backdrop {
  position: fixed;
  background-color: rgb(131, 160, 185);
  width: 800px;
  height: 500px;
  margin-left: 120px;
  margin-top: 80px;
}
.parallax-item {
  width: 800px;
  height: 600px;
  position: absolute;
  left: 30%;
  top: 30%;
  margin-left: -250px;
  margin-top: -120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.parallax-item img {
  max-width: 100%;
  max-height: 100%;
  margin-left: -400px;
  margin-top: -100px;
}
.quote {
  /* padding: 40px; */
  width: 400px;
  color: rgb(225, 221, 221);
  font-size: 4rem;
}
.parallax-container {
  min-height: 100vh;
  top: 500px;
  position: relative;
  overflow: hidden;
}
.alt{
  background-color: #ffcdd2;
}
img#first {
  transform: rotate(30deg);
}
img#second {
  transform: rotate(-20deg);
}
img#third {
  transform: rotate(10deg);
}