

html {
	height:100%;
}
#content {
	text-align: center;
	padding-top: 25%;
	text-shadow: 0px 4px 3px #c9d8f2,
							 0px 8px 8px #fff;
}
body {
	color: #afc1e0;
	background-image: url(https://images.unsplash.com/photo-1484312152213-d713e8b7c053?auto=format&fit=crop&w=2700&q=80);
	background-size: cover;
	background-position: center;
	font-family: 'Raleway', sans-serif;
}
body.pageTwo {
	background-image: url(foxOnWhite.jpg);/*("https://images.unsplash.com/photo-1516591140328-8925e3317673?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=162c5f44983c44761e02f961d599175a&auto=format&fit=crop&w=1567&q=80");*/
	height:100%;
}
/*image credit: Jonatan Pie*/
h1 {
	font-weight: : 700;
}
hr {
	width: 300px;
	border-top: 1px solid #c9d8f2;
	/*border-bottom: 1px solid rgba(0,0,0,0.2)*/
}
 .navbar-light .navbar-brand {
	color: red;
	font-family: 'Montserrat', sans-serif;
	font-size: 2em;
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
	color: #afc1e0;
}
.navbar-light .navbar-nav .nav-link {
	color: #afc1e0;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: #5978d6;
}
.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
	color: #5978d6;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
	background-color: #afc1e0;
}
.dropdown-item {
	color:#5978d6;
}
.dropdown-item:focus, .dropdown-item:hover {
	background-color: #88A8DB;
	color:#5978d6;
}
.navbar-light .navbar-toggler {
	border: none;
}
.navbar-light .navbar-toggler:focus {
	outline: 0;
}


.navbar-light .navbar-toggler-icon {
    background-image: url('https://mdbootstrap.com/img/svg/hamburger2.svg?color=afc1e0');
}
.navbar-light .navbar-toggler-icon:hover {
    background-image: url('https://mdbootstrap.com/img/svg/hamburger2.svg?color=5978d6');
}

.btn {
	border: none;
	font-family: 'Raleway', sans-serif;
	font-size: inherit;
	color: inherit;
	background: none;
	cursor: pointer;
	padding: 15px 50px;
	display: inline-block;
	margin: 15px 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

/* Pseudo elements for icons */
.btn:before,
.icon-heart:after,
.icon-star:after,
.icon-plus:after,
.icon-file:before {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	position: relative;
	-webkit-font-smoothing: antialiased;
}

.btn-1 {
	border: 3px solid #fff;
	color: #fff;
}

.btn-1e {
	overflow: hidden;
}

.btn-1e:after {
	width: 100%;
	height: 0;
	top: 50%;
	left: 50%;
	background: #fff;
	opacity: 0;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.btn-1e:hover,
.btn-1e:active {
	color: #5978d6
}

.btn-1e:hover:after {
	height: 260%;
	opacity: 1;
}

.btn-1e:active:after {
	height: 400%;
	opacity: 1;
}
.Grid {
  display: flex;
}

.Grid-cell {

  flex: 1;
  padding-left: 2%;
  padding-top: 20%;
  padding-right: 2%;
}
h3.aboutSite{
	font-size: 1.5em;
}
h1.fun {

	font-size: 2em;
}
p.hope {
	font-size: 1em;
}

.Grid--gutters {
  margin: -1em 0 0 -1em;
}
.Grid--gutters > .Grid-cell {
  padding: 1em 0 0 1em;
}

/* Alignment per row */
/*.Grid--top {
  align-items: flex-start;
}*/
.Grid--bottom {
  align-items: flex-end;
}
.Grid--center {
  align-items: center;
}

/* Alignment per cell */
.Grid-cell--top {
  align-self: flex-start;
}
.Grid-cell--bottom {
  align-self: flex-end;
}
.Grid-cell--center {
  align-self: center;
}




/* Base classes for all media */
.Grid--fit > .Grid-cell {
  flex: 1;
}
.Grid--full > .Grid-cell {
  flex: 0 0 100%;
}
.Grid--1of2 > .Grid-cell {
  flex: 0 0 50%
}
.Grid--1of3 > .Grid-cell {
  flex: 0 0 33.3333%
}
.Grid--1of4 > .Grid-cell {
  flex: 0 0 25%
}

/* Small to medium screens */
@media (min-width: 24em) {
  .small-Grid--fit > .Grid-cell {
    flex: 1;
  }
  .small-Grid--full > .Grid-cell {
    flex: 0 0 100%;
  }
  .small-Grid--1of2 > .Grid-cell {
    flex: 0 0 50%
  }
  .small-Grid--1of3 > .Grid-cell {
    flex: 0 0 33.3333%
  }
  .small-Grid--1of4 > .Grid-cell {
    flex: 0 0 25%
  }
}

/* Large screens */
@media (min-width: 48em) {
  .large-Grid--fit > .Grid-cell {
    flex: 1;
  }
  .large-Grid--full > .Grid-cell {
    flex: 0 0 100%;
  }
  .large-Grid--1of2 > .Grid-cell {
    flex: 0 0 50%
  }
  .large-Grid--1of3 > .Grid-cell {
    flex: 0 0 33.3333%
  }
  .large-Grid--1of4 > .Grid-cell {
    flex: 0 0 25%
  }
}
.unsplash{
	color: #5978d6!important;
}
.row-fluid{
	width: 100%
	height: 400px
	padding-left: 67%;
	padding-right: 15px;
	padding-top: 20%

}

.span2 {
	margin-left: 70%;
	color: #788ac1!important;
	text-shadow: 2px -1px 10px #c0cdf3;

}
