/*general formatting for header, body, various text, etc.*/
html, body{
  position: relative;
  min-height: 100%;
  width:100%;
}
header {
  background-color: rgb(200,200,200);
  margin:0;
  /*height:10%;*/
}
body{
  position: absolute;
	background-color: gray;
  /*background-image: url('../assets/background.jpg');*/
  background-size: cover;
  background-attachment: fixed;
	font-family: sans-serif;
	margin:0px;
  padding:0;

}
footer{
  position: absolute;
  bottom: 0px;
  margin-top: 20px;
  background-color: rgba(0,0,0,.3);
  color: white;
  padding: 10px;
}
p{
  font-size:15px;
}
form p{
  line-height: 2;
}
#login p{
  color: gray;
  font-weight: bold;
}
#heading{
  display:block;
  position:relative;
  margin:0px;
  background-color: #404040;
  /*background-color: #87CEFA;*/
  border-bottom: 3px solid #0085b3;
  padding: 30px 30px 20px 30px;

}
#heading h1{
  display:inline;
  margin:0px;
  font-size:40px;
  /*font fromt google fonts*/
  font-family: 'Russo One';
}
#heading a{
  text-decoration: none;
  color: #0085b3;
}

h2{
  font-size : 30px;
  font-weight: normal;
  border-bottom: solid 3px #0085b3;
}

h3{
  font-size : 30px;
  font-weight: normal;
  margin-bottom: 0px;
}

#login{
  display:inline;
  margin: 20px;
  font-size: 20px;
  position: relative;
  float:right;
}

#login p{
  display:inline;
}

form#logout-form{
  display: inline;
}

.alert{
  color: red;
}
/*styling for main page content*/
.page-content{
	display:block;
	position: relative;
  background-color: rgba(240, 240, 240, 0.8);
  margin:auto;
  margin-bottom: 50px;
  padding:20px;
  width:80%;
}

/*styling for the main picture(s) that are the focus of each page*/
.main_picture{
	width:100%;
  margin:auto;
}

/*default styling for the text-overlays that appear on each page*/
.text-overlay {
/*by default it is positioned around the top left corner and does 
not go across the entire page width*/
  position:absolute;
  margin-top:10%;
  padding-left:10px;
  padding-right:10px;
  width: 85%;
  
  /* background color is black, but transparent so you can still see the picture behind it*/
  background-color: rgba(0,0,0,0.5);

  color: rgba(255,255,255,1);
  box-shadow: 5px 5px 15px #888888;
}

.reports{
  display:inline-block;
  text-align: center;
}

.reports h2{
  text-align: left;
}

.image-thumbnail-pic{
  height: auto;
  max-width: 100%;
  max-height: 300px;
  border: solid 2px black;
}

.image-full-pic{
  height: auto;
  max-width: 100%
}

.image-thumbnail{
  display:inline-block;
  padding:20px;
  width:300px;
  margin:0;
  background: #FFFFFF;
  margin: 10px;
}

.image-full{
  display:inline-block;
  padding:20px;
  margin:0;
}

.hide{
  display: none;
}