* {
  margin: 0;
}
body {
 
    font-family: helvetica;
    font-size: 14px;
    min-width: 890px;
}

/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #cc99ff;
}
#logo {
 float:left;
 font-family: 'Dancing Script', cursive;
 font-size:32px;
}
/* Links inside the navbar */
.navbar a {
  float: right;
  font-size: 20px;
  color: white;
  text-align: center;
  padding: 14px 60px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: right;
  overflow: hidden;
  
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 20px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 50px;
  background-color: inherit;
  font-family: inherit; 
  margin: 0; 
}

.navbar a:hover, .dropdown:hover .dropbtn {
    background: deeppink;
    color: #fff; 
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #cc99ff;
  min-width: 160px;
  box-shadow: 0px 8px 60px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 60px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background: deeppink;
  color: #fff; 
  
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  width: 1300px;
 position: relative;
  margin: 2%;
}

/* Hide the images by default */
.mySlides {
  display: none;
} 

/* Caption text */
.text {
  color: white;
  text-shadow: #000 0px 0px 1px,   #000 0px 0px 1px,   #000 0px 0px 1px,
             #000 0px 0px 1px,   #000 0px 0px 1px,   #000 0px 0px 1px;
  font-family: 'Crete Round', serif;
  font-size: 100px;
  padding: 24% 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.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;
}

/* 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}
}

/*main article*/
article {
 margin-left: 3%;
 margin-right: 3%;
 padding:20px;
 font-family: helvetica;
 font-size: 16px;
 line-height: 1.5;
 text-align: left;
 margin: 2% 16%;
 
}

/*title*/
h1 {
 text-align: center;
 font-family: 'Merriweather', serif;
 font-size: 30px;
 margin-top: 6%;
}

h4 {
 font-family: 'Merriweather', serif;
 text-align: center;
 margin-bottom: 15px;
 font-size: 16px;
}

.introduction {
 font-size: 24px;
}

footer {
 background-color: #cc99ff;
  padding: 10px;
  color: grey;
  margin: 0px;
  height: 100px;
  clear:left;
  font-size: 12px;
  text-align: center;
 }
 
/*image gallery start*/
div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: 400px;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width:16.6666667%;
  margin-bottom: 2%;
  margin-top: 2%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/*image gallery end*/


.bold {
 font-weight: bold;
}