#wrapper
{
width:100%;
height:100%;
background-color:pink;
margin:auto;
}

#header
{
width:80%;
height:10%;
background-color:blue;
margin:auto;
}

#Menu
{
width:80%;
height:4%;
background-color:red;
margin:auto;


	
}

#navigation ul 
{
	list-style-type:none;
	margin:0;
    padding:0	
}

#navigation ul li
{
	position:relative;
	float:left;
	border-right:1px solid grey;
	width:10%;
}

#navigation ul a
{
	display:block;
	text-decoration:none;
	color:white;
	text-align:center;
	padding:14px 12px;
	font-size:14px;
}

#navigation ul li:hover
{
	background-color:deeppink;
	
}
#navigation ul ul
{
	display:none;
	position:absolute;
	background-color:purple;
	
	z-index:1;
}
#navigation ul ul li
{
	width:100%;
}
#navigation ul ul a
{
	padding:8% 6%;
	border-bottom:1px solid grey;
}
#navigation ul li:hover> ul
{
	display:block;
	color:black;
}
#content
{
width:80%;
height:70%;
background-color:white;
margin:auto;
border:1px solid grey;
padding-top


}

::-webkit-scrollbar {
    width: 10px;
}


::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 

::-webkit-scrollbar-thumb {
    background: #888; 
}

::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}


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


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


.prev:hover, .next:hover {
  background-color:black;
}


.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}


.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


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


@media only screen and (max-width: 300px)
 {
  .prev, .next,.text 
  {font-size: 11px
  }
}


#footer
{
width:80%;
height:6%;
font-size:20px;
background-color:red;
color:white;
margin:auto;
display:flex;
border:1px solid grey;
justify-content:center;
align-items:center
}