/* CSS Specific to the Home Page.  Parallax effects are specific to each page due to the nature of their definitions. Written April 29th, 2022 by TH.*/
.column {
  float: left;
  width: 33.33%;
}
.counter {
	font-size: 80px;
	
}
/* Spacing for floats */
.row:after {
  content: "";
  display: table;
  clear: both;
}
#parallax1 {
  background-image: url(../images/rocket1.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: 100%;
  animation: fadeIn ease 3s;
  animation-iteration-count: 1;
}
/* Each parallax section gets its own id */
#parallax2 {
  background-image: url("../images/rocket2.jpg");
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* Parallax text is fixed and gets its own padding properties */
#parallaxTitle {
  color: white;
  position: relative;
  font-size: 100px;
  text-align: right;
  padding-top: 170px;
  padding-right: 100px;
  font-family: basic-sans, serif;
  font-weight: 700;
  font-style: normal;
  background-attachment: fixed;
}
#parallaxSubtitle {
  color: white;
  position: relative;
  font-size: 30px;
  text-align: right;
  padding-right: 120px;
  padding-bottom: 170px;
  font-family: basic-sans, serif;
  font-weight: 400;
  font-style: normal;
  background-attachment: fixed;
}
#parallaxTitle2 {
  color: white;
  position: relative;
  font-size: 100px;
  text-align: left;
  padding-top: 170px;
  padding-left: 100px;
  font-family: basic-sans, serif;
  font-weight: 700;
  font-style: normal;
  background-attachment: fixed;
}
#parallaxSubtitle2 {
  color: white;
  position: relative;
  font-size: 30px;
  text-align: left;
  padding-left: 120px;
  padding-bottom: 170px;
  font-family: basic-sans, 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, #parallaxTitle, #parallaxSubtitle {
    background-attachment: scroll;
  }
}