@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}

body {
  background-color: #f3f8e2;
  font-family: "Times New Roman", Georgia, Serif;
  margin: 0;
  padding: 0;
}

.container1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.image {
  flex: 1;
  padding: 10px;
}

.image img {
  max-width: 100%;
  height: 530px;
  width: 600px;
  display: block;
}

.text {
  flex: 1;
  padding: 10px;
}


header {
  width: 100%;
  height: 125px;
  background-color: hsl(0, 0%, 95%);
  position: fixed;
  top: 0;
}

h1 {
  font-family: "Times New Roman", Georgia, Serif;
  text-align: center;
  color: #efa105;
  letter-spacing: 8px;
}

.container1 h2 {
  font-family: "Times New Roman", Georgia, Serif;
  text-align: center;
  letter-spacing: 3px;
  font-size: 28px;
  background-color: #ffcc33;
  font-style: italic;
}

.container1 h3 {
  font-family: "Times New Roman", Georgia, Serif;
  text-align: center;
  letter-spacing: 2px;
  font-size: 25px;

}

.container1 h4 {
  font-family: "dancing Script", cursive;
  text-align: center;
  letter-spacing: 3px;
  font-size: 25px;
}

h5 {
  color: #171717;
  font-size: 40px;
  font-family: dancing Script;
  letter-spacing: 3px;
  text-align: center;
}

h6 {
  color: #c3783fd8;
  font-size: 20px;
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  letter-spacing: 2px;
  font-weight: bold;
  text-align: center;
}




p {
  line-height: 133%;
  font-size: 18px;

}

main {
  width: 1000px;
  margin: 130px auto 20px auto;
  background-color: hsl(0, 50%, 99%);
  /*for testing only*/
  z-index: -2;
  position: center;

}

/*for rhondas-spicy-mango */
.container3 {
  display: flex;
}

.section3 {
  flex: 1;
  text-align: center;
  padding: 10px;
}

.divider3 {
  border-left: 1px solid #000;
  height: 50px;
  margin: 0 10px;
}

.divider2 {
  text-align: left;
  height: 50px;
  margin: 0 10px;
}

.section2 {
  flex: 1;
  text-align: left;
  padding: 5px;
}

.container2 h1 {
  font-family: "dancing Script", cursive;
  text-align: center;
  color: #99cc99;
  font-size: 25px;
  margin-top: 10px;
}

.container2 h4 {
  text-align: center;
  color: #ffcc33;
  font-size: 15px;
}


.container2 h2 {
  color: #ffcc33;
  font-size: 20px;
}

.container2 h3 {
  color: #ffcc33;
  font-size: 18px;
}


ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li,
ol li {
  margin-bottom: 10px;
}

.container2 {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.section {
  margin-bottom: 15px;

}

.section-title {
  border-bottom: 2px solid #99cc99;
  margin-bottom: 10px;
  padding-bottom: 5px;
}



.notes {
  color: #777;
  font-style: italic;
}

.awards {
  color: #ffcc33;
}

.ingredient-image {
  max-width: 100%;
  display: block;
  margin: 0px 0;
}

.step-image {
  width: 950px;
  height: 400px;
  display: block;
  margin: 0px 0;
}

/*for rhondas-spicy-mango end*/



/*for Q-AND-A */
h7 {
  color: #c3783fd8;
  font-size: 16px;
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;

  text-align: left;
}

.divider {
  border-bottom: 3px solid #99cc99;
  border-bottom-width: 2px;
  margin: 5px 0px;
}




footer {
  background-color: hsl(0, 0%, 95%);
  color: #fff;
  padding: 25px 0;
  text-align: center;
  font-size: 15px;
}

footer a {
  color: #505050;
  text-decoration: none;
  margin: 0 10px;


}

.copyright {
  font-size: 14px;
}

main.mySecondMain {
  width: 1000px;
  margin: 100px auto;
  background-color: #555;
}



nav {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 20px 0;
  box-shadow: 0px 5px 0px #dedede;
}

nav ul {
  list-style: none;
  text-align: center;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #aaa;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 10px;
}

nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all .5s;
}

nav ul li a:hover {
  color: #555;
}


/* stroke */
nav.stroke ul li a,
nav.fill ul li a {
  position: relative;
}

nav.stroke ul li a:after,
nav.fill ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #fffefe;
  height: 1px;
}

nav.stroke ul li a:hover:after {
  width: 100%;
}

nav.fill ul li a {
  transition: all 2s;
}

nav.fill ul li a:after {
  text-align: left;
  content: '.';
  margin: 0;
  opacity: 0;
}

nav.fill ul li a:hover {
  color: #fff;
  z-index: 1;
}

nav.fill ul li a:hover:after {
  z-index: -10;
  animation: fill 1s forwards;
  -webkit-animation: fill 1s forwards;
  -moz-animation: fill 1s forwards;
  opacity: 1;
}

/* Circle */
nav.circle ul li a {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

nav.circle ul li a:after {
  display: block;
  position: absolute;
  margin: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '.';
  color: transparent;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: transparent;
}

nav.circle ul li a:hover:after {
  animation: -circle 1.5s ease-in forwards;
}

/* SHIFT */
nav.shift ul li a {
  position: relative;
  z-index: 1;
}

nav.shift ul li a:hover {
  color: #131312;
}

nav.shift ul li a:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: '.';
  color: transparent;
  background: #c7c7c6;
  visibility: none;
  opacity: 0;
  z-index: -1;
}

nav.shift ul li a:hover:after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}