@charset "utf-8";
/* CSS Document */

html{
	height: 100%;
}

h1{
	text-align: center;
	color: lightgoldenrodyellow;
	background-color: darkorange;
	border: 1.5px solid white;
	border-radius: 10px;
}

body{
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	max-width: 80%;
	margin: auto;
	background-image: url("images/bubbles.png"), linear-gradient(lightblue, navy);
	height: 100%;
	backgroun-repeat: no-repeat;
	background-attachment: fixed;
}

.nav{
	display: block;
	margin: 0px 10px 0px 10px;
	padding: 0;
	list-style: none;
}


.nav li{
	float: left;
	width: 25%;
}

.nav li:last-of-type a{
	border-right: 1px solid white;
}

.nav a{
	color: black;
	font-size: 11px;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	border: 1px solid white;
	border-right: none;
	border-radius: 10px;
	padding: 5px; 
	display: block;
	background-color: lightblue;
}

.nav a:hover{
	font-weight: bold;
	color: white;
	background-color: navy;
	border: 1px solid black;
}


.footer{
	color: white;
	font-size: .7em;
	font-style: italic;
	text-align: center;
	margin: auto;
	padding-top: 5em;
	
}

footer a:link{
	color:aqua;
}

footer a:visted{
	color: antiquewhite;
}

.question{
	font-weight: bold;
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: black;
	margin: 1.5em;
}

p{
	color:black;
	margin: 1.5em;
}

.legible{
	background-color: lightblue;
	border-radius: 10px;
	
}

figure{
	display: inline-block;
}

figure img{
	background-color: lightskyblue;
	border-radius: 15px;
	box-shadow: 2px 2px 5px black;
	object-fit: contain;
}

figcaption{
	text-align: center;
	color: white;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-weight: bold;
}



.gallery{
	width: 80%;
	margin: auto;
}

.gallery2{
	width: 50%;
	margin: auto;
	padding-top: 7em;
}


* {box-sizing:border-box}

.slideshow-container {
  max-width: 750px;
  position: relative;
  margin: auto;
  padding-top: 5em;
}

.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -15px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.text {
  color: white;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

.numbertext {
  color: white;
  font-size: 12px;
  padding: 8px 12px;
  position: relative;
  top: 0;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

.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;
}

.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}
}

