/* Light Blue Background #e6f2ff */
/* Medium Blue Shadow #a1c3e6 */
/* Medium Orange #ebb54b */


/* Common */
body {
	background-color: #e6f2ff;
	font-family: arial, helvetica, sans-serif;
}

h1 {
	padding: 50px 50px;
	font-size: 36px;
}

h2 {
	padding: 10px 50px;
	font-size: 30px;
}

p {
	padding: 10px 50px;
	font-size: 20px;
}

li {
	list-style-position: inside;
	padding: 10px 50px;
	font-size: 20px;
}

a {
	text-decoration: none;
	color: #000000;
}

img {
  max-width: 100%;
  height: auto;
}

.button {
  background-color: #ebb54b; 
  border: 3px solid #000000;
  color: #000000;
  padding: 5px;
  margin: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 28px;
  border-radius: 12px;
}

div.fixed {
	position: fixed;
	bottom: 25;
	right: 25;
	width: auto;
	border: 3px solid #000000;
	border-radius: 12px;
	background-color: #ebb54b;
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;
	padding: 20px 30px;
}

#mainTitle {
	background-color: #ebb54b;
	text-transform: uppercase;
	border: 1px solid;
	padding: 30px;
	box-shadow: 10px 10px #a1c3e6;
	position: relative;
	left: 1000px;
}

/* 404 */
.textOverImage {
  position: relative;
  text-align: center;
  color: #000000;
  font-size: 26px;
}

.centeredText {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/* The sidebar menu */
.sidenav {
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 160px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #111; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Style page content */
.main {
  margin-left: 160px; /* Same as the width of the sidebar */
  padding: 0px 10px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

