* {
  margin: 0;
}
body {
 
    text-align:center;
    font-family: helvetica;
    font-size: 14px;
}

/* 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}

h1 {
    font-family: 'Merriweather', serif;
    font-size: 30px;
    text-align: center;
}
/*recipe box*/
.directions {
  float: left;
  padding: 20px;
  margin-left: 15%;
  margin-right: 15%;
  margin-top: 3%;
  margin-bottom: 3%;
  width: 70%;
  background-color: #CAC5E3; /*light grey color*/
 }

ul {
    list-style-type: none;
}
.instructions {
    padding: 2%;
    font-family: helvetica;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}
/*recipe box end*/

h4 {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    
}

footer {
  background-color: #cc99ff;
  padding: 10px;
  color: grey;
  margin: 0px;
  height: 100px;
  clear:left;
  font-size: 12px;
 }
 
 .title {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 3%;
  text-align: center;
 }
article{
 text-align: left;
 margin: 2% 16%;
 line-height: 1.5;
 font-size: 17px;
}
h2 {
 text-align: left;
 padding: 1%;
 font-size: 28px;
}
h3 {
 font-size: 20px;
}
.howto {
 font-weight: bold;
}

/*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:20%;
  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*/

/*underline specific words*/
.bold{
 font-weight: bold;
}