/* CSS that all pages use. Completed April 21st, 2022 by TH. Modifications made April 24th, 2022 by TH. */
body, html {
  height: 100%;
  margin: 0;
  font-family: basic-sans, serif;
  background-color: black;
}
figcaption {
  font-size: 14px;
  color: grey;
}
figure {
  postion: sticky;
}
.figureLeft {
  float: left;
}
.figureRight {
  float: right;
}
h6 {
  font-style: italic;
}
.button {
  padding-left: 20px;
  background-color: white;
  border: medium;
  color: grey;
  padding: 7px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-family: basic-sans, serif;
  font-weight: 100;
}
/* Allow text to wrap images (as figures) */
.figureRight {
  float: right;
}
.figureLeft {
  float: left;
}
/* Keyframe animation for parallax background and text */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Add a black background color to the top navigation */
.topnav {
  background-color: rgba(255, 255, 255, 0);
  overflow: hidden;
}
.topnav #logo {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}
/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: darkgray;
  color: white;
}
.topnav a.target {
  float:  right;
  border: thin solid white;
  color: white;
}
.target {
  border: thin solid white;
  color: white;
   text-decoration: none;
}
/* Gives content on site a comfortable boarder */
.content {
  color: white;
  padding-right: 40px;
  padding-left: 40px;
  font-size: 18px;
}
footer {
  color: white;
  padding-right: 40px;
  padding-left: 40px;
  font-size: 12px;
}
#returnButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px;
  height: 40px;
  width: 40px;
  font-size: 2em;
  font-weight: bold;
  border-radius: 50%;
  background-color: darkgray;
  color: white;
  text-align: center;
  cursor: pointer;
}
#logo {
  font-family: basic-sans, serif;
  font-weight: 300;
}
footer {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 40px;
}