body{
    margin:0;
    padding:0;
	font-family: 'Lora', serif;
}

#top{
    text-align: center;
	margin-top: 5rem;
}

#title{
    text-align: center;
    font-size: 40px;
    text-shadow: 2px 2px 3px grey;
}

#introduction{
/*    border: 2px solid blue;*/
    font-size:18px;
    max-width:1200px;
    margin:auto;
    padding:10px;
    margin-bottom: 30px;
}

#button_container {
    display: flex;
    flex-flow: row wrap;
	justify-content: center;
}

.button{
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    width:220px;
    background-color: gold;
    padding: 15px 18px;
    margin:15px;
}

.button:hover{
    transform: translateY(-2px);
  box-shadow: 0 10px 14px rgba(50,50,93,.3), 0 3px 6px rgba(0,0,0,.08);
  opacity: 0.7;
  cursor: pointer;
    transition: all 0.5s;
}

#button_container a{
    text-decoration: none;
    color: black;
}

#gallery_title {
	font-size:20px;
	color: white;
	font-weight: 600;
	background-color: #053C99;
	max-width: 700px;
	padding: 2% 5%;
    margin:0 auto;
	text-align: center;
    margin-top: 60px;
	border-radius: 8px 8px 0 0;
}

/*Reference for the slide show: s

/* slide-navigation */

.main-container{
	max-width: 700px;
	position: relative;
	margin: 0 auto 60px auto;
	background-color: #053C99;
	padding: 0% 5% 2% 5%;
	border-radius: 0 0 8px 8px;
}

.slideshow-container {
	width: 100%;
	position: relative;
	margin: auto;
}

.slides {
	display: none;
}

img {
	border-radius: 8px;
	max-height: 600px;
	max-width: 900px;
}

.number {
	position: absolute;
	padding: 8px 12px;
	color: white;
}

.text {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	width: 100%;
	padding: 15px 0 10px 0;
	bottom: 8px;
	color: white;
}

.prev, .next {
	position: absolute;
	top: 45%;
	color: white;
	font-weight: 700;
	padding: 10px 10px;
	font-size: 30px;
	border-radius: 0 3px 3px 0;
	cursor: pointer;
}

.next {
	border-radius: 3px 0 0 3px;
	right: 0;
}

.prev:hover, .next:hover {
	background: rgba(0,0,0,0.8);
}

.dots {
	width: 60px;
	height: 60px;
	display: inline-block;
	padding: 2px;
	cursor: pointer;
}

.fade {
	animation-name: fade;
	animation-duration: 0.4s;
}
@keyframes fade{
	from{opacity: 0.7}
	to{opacity: 1}
}

.active, .dots:hover{
	background: #C2CADF;
	border-radius: 8px;
	opacity: 0.5;
}

@media(max-width:850px) {
	.main-container, #gallery_title{
		width: 80%;
	}
}