body
{
  /* Makes it so that, unless otherwise stated, all objects 
  are right up next to the border of the page */
  margin: 0px;
  /*The following line makes it so that the page will not get too skinny. 
  When the browser is really skinny it does not look good which is why I did this*/
  min-width: 850px; 
}
/*The next three aspects all make the header with a small home button (logo) and a large title*/
.left {
    width: 10%;
    height: 10%;
    float: left;
}
.right {
    margin-left: 10%;
    height: 12%;
}
.header 
{
  position: relative;
  left: 0;
  top: 0;
  padding: 2px;
  background-image: linear-gradient(#2E8B57, #20B2AA);
}
h1
{
  position: relative;
  top: 0%;
  right: 0%;
  width: 100%;
  font-family: "Courier New", Courier, monospace;
  color: white;
  text-align: center;
}
/*Formats the logo*/
#logo
{
  position: relative;
  width: 20%;
  margin-left: 10%;
}
/*The container of the table with all the trip report*/
data
{
  position: relative;
  width: 90%;
  left: 10%;
  margin-top: 3%;
}
/*The rectangle with the disclaimer*/
.leftrectangle {
  width: 22%;
  padding-bottom: 2%;
  float: left;
  position: relative;
  left: 5%;
  margin-top: 1.5%;
  background-image: linear-gradient(#20B2AA, #2E8B57);
  text-align: center;
}
/*The photo next to the disclaimer*/
#insidephoto{
  width: 180px;
  text-align: center;
}
h2
{
	font-family: "Courier New", Courier, monospace;
	font-size: 30px;
  text-align: center;
  color: white;

}
h3
{

	font-family: "Courier New", Courier, monospace;
	font-weight: bold;
	font-size: 20px;
	padding: 0px;
	color: #FFFFFF;
}
h4
{
	font-family: "Courier New", Courier, monospace;
 	text-align: center;
 	color: #2E8B57;

}
h6
{
	text-align: center;
	font-weight: bold;
  	font-size: 30px;
  	color: #2E8B57;
  	text-shadow: 0px 0px 5px #FFFFFF;
}
p
{
	font-family: Lucida Console,Lucida Sans Typewriter,monaco,Bitstream Vera Sans Mono,monospace; 
	text-align: center;
	padding: 0px;
  color: white;
}
/*Displays the user photo in a set width and has a max height so that it does not look ridiculus with super tall pics*/
.userphoto
{
	width: 350px;
	max-height: 800px;
}
/*The following all formats the table and makes it so that it is a set height but can br scrolled through
From https://www.w3schools.com/howto/howto_css_table_responsive.asp*/
table.scroll {
	position: relative;
	left: 8%;
  margin-top: 1.5%;
  width: 60%; 
  border-collapse: collapse; 
  border-spacing: 0;
  border: 2px solid black;
  margin-bottom: 4%;
}

table.scroll tbody,
table.scroll thead { display: block; }


table.scroll tbody {
    height: 800px;
    background-color:#292F33;
    color: white;
    text-align: center;
    padding: 30px;
    overflow-y: auto;
    overflow-x: hidden;
}

tbody { 
	border-top: 2px solid black; 
}

tbody td, thead th {
    width: 20%; 
    border-right: 1px #292F33;
    border-bottom: solid 2px #2E8B57;;
    /* white-space: nowrap; */
}

tbody td:last-child, thead th:last-child {
    border-right: none;
}

.footer 
{
  position: relative;
  left: 0;
  margin-top: 0%;
  height: 40%;
  background-image: linear-gradient(#2E8B57, #20B2AA);
  padding: 3%;
 }
 #logo
 {
 	position: relative;
 	width: 20%;
 	margin-left: 40%;
 }
/* The bottom border photo */
#bottomphoto
{
  width: 100%;
  position: relative;
  bottom: -3%;
  right: 0px;
  height: auto;
}








body 
{
	background-color: FFFFFF;
}
* {box-sizing:border-box}


  /*The Following is all CSS for the navbar which I got from https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_dropdown_navbar_click*/
.navbar {
  margin-top: 0%;
  margin-left: 0%;
  overflow: hidden;
  background-color: #333;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 999;
}

.navbar a {
  float: left;
  left: 0;
  font-size: 20px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 20px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
  background-color: green;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

