body, html {
  height: 100%;
  margin: 0;
}

.parallax-container {
  height: 500px;
  width: 100%;
}

.heading {
  text-align: center;
  color: #2d557e;
  font-family: 'Verdana', sans-serif;
  font-size: 24px;
/*  font-weight: bold;*/
}

#navbar {
  background-color: transparent;
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  display: block;
  transition: top 0.3s;
}

#navbar a {
  float: left;
  display: block;
  color: #2d557e;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  font-family: 'Verdana', sans-serif;
  font-size: 20px;
}

#navbar a:hover {
  background-color: #2d557e;
  color: #fff;
}

.bodytext {
  text-align: justify;
  color: #2d557e;
  font-family: 'Verdana', sans-serif;
  font-size: 18px;
}

.bodytext a {
  text-decoration: none;
  color: #1e90ff;
}

.bodytext a:hover {
  text-decoration: none;
  color: #ff0000;
}

.signature {
  text-align: right;
  color: #2d557e;
  font-family: 'Tangerine', serif;
  font-size: 32px;
  font-weight: bold;  
}

.bgimg-1 {
  background-image: url("./../../img/author.jpg");
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
 /* min-height: 100%; */
  min-height: 50%;
}

h3 {
  letter-spacing: 5px;
  text-align: center;
  color: #2d557e;
  font-family: 'Tangerine', serif;
  font-size: 60px;
  font-weight: bold;
}


/* Turn off parallax scrolling for tablets and phones */

@media screen and (max-height: 450px) {
	h3 {font-size: 32px;}
	.heading {font-size: 18px;}
	.bodytext {font-size: 12px;}	
	#navbar a {font-size: 24px;}
	.signature {font-size: 24px;}
}	


@media only screen and (max-device-width: 1024px) {
  .bgimg-1 {
    background-attachment: scroll;
  }
}