@import url('https://fonts.googleapis.com/css?family=Satisfy|Livvic|Open+Sans');

* {
  box-sizing: border-box;
}

body, html {
  background-color: #fffff;
  height: 100%;
}

h1 {
  font-family: Satisfy;
  font-size: 60px;
  color: #ffffff;
  text-align: center;
}

h2 {
  font-family: Satisfy;
  font-size: 50px;
  color: #173F5F;
  text-align: center;
}

h3 {
  font-family: Satisfy;
  font-size: 40px;
  color: #173F5F;
  text-align: center;
}

h4 {
  font-family: Satisfy;
  font-size: 30px;
  color: #173F5F;
  text-align: center;
}

h5 {
  font-family: Satisfy;
  font-size: 25px;
  color: #173F5F;
  text-align: center;
}

p {
  font-family: Livvic;
  font-size: 20px;
  text-align: center;
  color: #20639B;
}

ol, ul {
  font-family: Livvic;
  font-size: 20px;
  text-align: left;
  color: #20639B;
}

a. {
  font-family: Livvic;
  font-size: 20px;
  color: #20639B;
}

 /* unvisited link */
a:link {
  font-family: Livvic;
  font-size: 20px;
  color: #ED553B;
  font-weight: bold;
  text-decoration: none;
}

/* visited link */
a:visited {
  font-family: Livvic;
  font-size: 20px;
  color: #ED553B;
  font-weight: bold;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  font-family: Livvic;
  font-size: 20px;
  color: #ED553B;
  font-weight: bold;
  font-style: italic;
  text-decoration: none;
}

/* selected link */
a:active {
  font-family: Livvic;
  font-size: 20px;
  color: #173F5F;
  text-decoration: none;
} 

/* Header/Blog Title */
.header {
  padding: 30px;
  text-align: center;
  background: none;
  color: #white;
  text-shadow: 4px 4px 10px #173F5F;
}

.header h1 {
  font-family: Satisfy;
  font-size: 100px;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: none;
}

/* Style the topnav links */
.topnav a {
  font-family: Livvic;
  font-size: 25px;
  float: left;
  display: block;
  color: #ED553B;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}


/* Change color on hover */
.topnav a:hover {
  background-color: none;
  color: #ED553B;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: center;
  width: 100%;
}

/* IMAGES */
/* Images */
.bordered {
  border: 2px solid #9871fd;
}

.buffer {
  float:center;
  padding:0px 20px 20px 20px;
  width:225px;
}

/* Images floating on left (wrapping, with border) */
.textwrapleft {
float: left;
margin: 10px;
border: 2px solid #fb8500;
	}

/* Images floating on right (wrapping, with border) */
.textwrapright {
float: right;
margin: 10px;
border: 2px solid #fb8500;
	}

/* Images floating on left (with border) */
.bordered {
margin: 10px;
border: 2px solid #fb8500;
	}


/* Fake image */
.fakeimg {
  background-color: #00cccc;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: none;
  padding: 20px;
  margin-top: 20px;
}

/* Create three equal columns that floats next to each other */
.column {
  float: center;
  width: 33.33%;
  padding: 15px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: none;
  margin-top: 20px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}

/* The hero image on the title page*/
.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (Heroimage_coral.png). This will make the text easier to read */
  background-image:  url("Heroimage_coral.png");

  /* Set a specific height */
  height: 100%;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

/* Lore Bible table */
.loretable {
  width: 50%;
  border: none;
  background-color: #173F5F;
  padding: 20px;
}

/* Infotable */
.infotable {
  width: 100%;
  border: none;
  background-color: #173F5F;
  padding: 20px;
} 

/* Infotable titles */
.infotexttitle {
  font-family: Livvic;
  font-size: 20px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
} 

/* Infotable text */
.infotext {
  font-family: Livvic;
  font-size: 20px;
  text-align: left;
  color: #ffffff;
} 

/* Invisible table for footer */
table {
  width: 100%;
  border: 0px solid red;
} 

.container {
  position: relative;
}

.bottomright {
  font-family: Satisfy;
  position: absolute;
  bottom: 8px;
  right: 16px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 5px #173F5F;
}

img { 
  width: 100%;
  height: auto;
}

/* Images floating on left (wrapping, with border) */
.textwrapleft {
float: left;
margin: 10px;
border: 2px solid #fb8500;
	}

/* Images floating on right (wrapping, with border) */
.textwrapright {
float: right;
margin: 10px;
border: 2px solid #fb8500;
	}

/* Images floating on left (with border) */
.bordered {
margin: 10px;
border: 2px solid #fb8500;
	}

/* Images floating on left (no border - for circle icons) */
.textwrapleftcircle {
float: left;
margin: 10px;
border: none;
	}

/* Images floating on right (no border - for circle icons) */
.textwraprightcircle {
float: right;
margin: 10px;
border: none;
	}

div.gallery {
  margin: 20px;
  border: 1px solid #ED553B;
  float: left;
  width: 250px;
  padding: 15px;
  background-color: none;
}

div.gallery:hover {
  border: 1px solid #F6D55C;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

div.galtitle {
  padding: 15px;
  font-size: 25px;
  font-family: Livvic;
  font-weight: bold;
  color: #173F5F;
  text-align: center;
}

div.galmain {
  padding: 15px;
  font-family: Livvic;
  font-size: 18px;
  font-style: italic;
  text-align: left;
  color: #20639B;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

 /* unvisited link */
a.desc:link {
  font-family: Livvic;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  background-color: #20639B;
  color: white;
  padding: 14px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

/* visited link */
a.desc:visited {
  font-family: Livvic;
  font-size: 18px;
  font-weight: bold;
  background-color: #20639B;
  color: white;
  padding: 14px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

/* mouse over link */
a.desc:hover {
  font-family: Livvic;
  font-size: 18px;
  font-weight: bold;
  background-color: #68829E;
  color: white;
  padding: 14px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

/* selected link */
a.desc:active {
  font-family: Livvic;
  font-size: 18px;
  font-weight: bold;
  background-color: #20639B;
  color: white;
  padding: 14px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
} 

/* Slideshow */

body {font-family: Open Sans, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 500px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}