figcaption {
  font-size: 14px;
  color:  grey;
}

figure {
  postion:  sticky;
}

h6 {
  font-style: italic;
}

.figureRight {
  float:  right;
}

.figureLeft {
  float:  left;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

#returnButton{
  position: fixed;
  bottom: 20px;
  right: 20px; 
  padding: 10px;
  height: 40px;
  width: 40px;  
  font-size: 2em;
  font-weight: bold;
  border-radius: 50%;
  background-color: darkred;
  color: white;
  text-align: center;
  cursor: pointer;
}

.content {
  font-family: superior-title, serif;
  padding-right: 40px;
  padding-left: 40px;
  font-size: 18px;
}

/* Parallax scrolling enabled on computer devices for background images */

.parallax1 {
  background-image: url("/images/susan3.jpg");
  min-height: 500px; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  animation: fadeIn ease 3s;
  animation-iteration-count: 1; 

}

.parallax2 {
  background-image: url("/images/youtube1.jpeg");
  min-height: 500px; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallaxTitle {
  color: white;
  font-size: 80px;
  text-align: right;
  padding-top: 170px;
  padding-right: 80px;

  font-family:  superior-title, serif;
  font-weight: 700;
  font-style: normal;
  background-attachment: fixed;



}
.parallaxSubtitle {
 color: white;
  font-size: 30px;
  text-align: right;
  padding-right: 80px;
  padding-bottom:  170px;
  font-family:  superior-title, serif;
  font-weight: 400;
  font-style: normal;
  background-attachment: fixed;
*/
}

/* 
Media query to mobile device and sets the scrolling of background images to behave like normal, non-parallax images. 
This is because many mobile devices do not support fixed background (parallax) scrolling on Webkit-based browsers.
*/

@media only screen and (max-device-width: 1366px) {
  .parallax1, .parallax2 {
    background-attachment: scroll;
  }
}