

body {   /*making background with gradient*/
 background: -webkit-linear-gradient(left top, #740726, #FFF); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(bottom right, #740726, #FFF); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(bottom right, #740726, #FFF); /* For Firefox 3.6 to 15 */
  background: linear-gradient(to bottom right, #740726, #FFF); /* Standard syntax */
  height: 100%; /*fills the screen. Responsive*/
  margin: 0;   
  background-repeat: no-repeat;  /*stop repeating. it was doing weird lines before. USE SCREENSHOT FOR TESTING */ 
  background-attachment: fixed; /* forces background to cover whole*/
}


#title{   /*vw and vh is a responsive measurement that is based on the screen (view-port) size */
	width: 100vw;
	height: 20vh;
	text-align:center;  /*centres items in div*/
}
#title img{
	height:100%;   /*fits inside div*/
}

.body img{	
	max-width: 100%;
}

nav{
	margin-left: 17.5%;
	
}
 ul {
    list-style-type: none;
    margin: 0 auto;
    padding: 0 ;
    overflow: hidden;
    background-color: #696969;
	width: 78.8%;
	text-align:center;
	padding-left: 35%;
}
li {
    
	display:inline;
}


 li a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 8px 15px 0 15px;
    text-decoration: none;
	background-color: #696969;
	font-family:Verdana, Geneva, sans-serif;
	

}
.activepage{
    background-color: #F08080;
}

 li a:hover:not(.active) {
    background-color: #F08080;
}

/* Slideshow container */
.slideshow-container {
  max-width: 600px;
  position: relative;
  margin: auto;

}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 0;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* 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);
}


/* The dots/bullets/indicators */
.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  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}
}

.content{
text-align:justify;
background-color: rgba(105, 105, 105, 0.3);
color:#fff;
margin:0 auto;
height:100%;
width: 55%;
padding: 1% 5%;
overflow:hidden;
}
#aboutimg{
float:left;
margin-right: 20px;
max-height:100%;
margin-left:22px;
}
 #map {
        width: 65%;
        height: 500px;
		margin: 0 auto;
     }


footer{
	width:100%;
	height:16vh;
    bottom: 0;

	background-color: #696969;
	font-family:Verdana, Geneva, sans-serif;
	color: white;
	text-align:center;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;

}

li {
    float: left;
}

li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 91.2px 14px 91.2px;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: #F08080;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	color: white;
}

.dropdown-content a {
    color: White;
    padding: 14px 94px 14px 94px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block;
	z-index: 2;
}

.content img{
width: 60%;
margin: auto;
}

@media screen and (max-width: 1600px) {body{font-size: 14px;}}
@media screen and (max-width: 768px) {body {font-size: 12px;}}
@media screen and (max-width: 550px) {body{font-size: 10px;}}
@media screen and (max-width: 320px) {body{font-size: 8px;}}


@media screen and (max-width: 1600px) { nav ul li a {font-size:1.2em;}}
@media screen and (max-width: 768px) { nav ul li a {font-size:1.1em;}}
@media screen and (max-width: 550px) { nav ul li a {font-size:1.0em;}}
@media screen and (max-width: 320px) { nav ul li a {font-size:0.8em;}}

