/* General Page Styling */
* {
    box-sizing: border-box;
}

body {
    font-family: Helvetica;
    margin: 0;
}

/* Header Styling */
.header {
    padding: 10px;
    text-align: center;
    background: white;
    color: #333;
}

.header h1 {
    font-size: 60px;
}

/* Navbar Styling */
.navbar {
    overflow: hidden;
    background-color: #333;
}

/* Navbar Link Styling */
.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

/* Hover Effect */
.navbar a:hover {
    background-color: #ddd;
    color: black;
}

/* Mobile Friendly -- links stack on top for small screens */
@media screen and (max-width: 400px) {
    .navbar a {
        float: none;
        width: 100%;
    }
}

/* Slideshow Styling */
.slideshow {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Prev/Next Buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Hover Effect */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Dot Styling */
.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;
}

/* Hover Effect */
.active, .dot:hover {
  background-color: #717171;
}

/* Transition Animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@-webkit-keyframes fade {
  from {opacity: .6} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .6} 
  to {opacity: 1}
}

/* Main Content Styling */
.main {   
    -ms-flex: 70%; /* IE10 */
    flex: 70%;
    background-color: white;
    padding: 20px;
}

.main h2 {
	position: absolute;
    text-decoration: none;
    padding-left: 40px;
    color: white;
    font-size: 40px;
    text-shadow: 2px 2px #333;
}

/* Footer Styling */
.footer {
    padding: 20px;
    text-align: center;
    background: #333;
}

/* Social Media Link Styling */
.footer a {
	color:white;
	padding: 5px;
}
