* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header {
  height: 100vh;
  width: 100%;
  background-image: url("https://images.unsplash.com/photo-1603894584373-5ac82b2ae398?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* background-color: red; */
}
header h1 {
  color: rgb(241, 235, 235);
  position: absolute;
  top: 45%;
  left: 40%;
  font-size: 4rem;
  /* transition: (-50%, -50%); */
}

.about,
.recipe {
  width: 90%;
  /* margin-left: auto;
  margin-right: auto; */
  margin: 24px auto 8px;
}
.aboutHeading,
.recipeHeading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin: 12px auto 18px;
}
.aboutHeading > p:first-child,
.recipeHeading > p:first-child,
.gallery-headline {
  display: block;
  font-size: 2.3rem;
  letter-spacing: 4px;
  text-align: center;
  font-weight: bold;
}

.bottom-border {
  text-align: center;
  width: 80px !important;
  background: green;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
}

.about-subheading {
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-top: 24px;
  margin-bottom: 10px;
  /* padding-left: 10%; */
}
.about-content {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 5%;
}

.about-detail,
.recipe-detail {
  text-align: justify;
  padding-left: 24px;
  font-size: 1.4rem;
}

.about-history,
h5#ingredients {
  font-weight: bold;
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.recipe-content {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 20%;
}

.ingredients {
  padding-left: 32px;
  margin-left: 12px;
}

h6.ingredient-type {
  margin-top: 8px;
  font-weight: normal;
  font-size: 1.4rem;
  margin-left: 8px;
}

.mySlides {
  display: none;
}
.slideshow-container {
  text-align: center;
}
.gallery-headline {
  margin-top: 24px;
  margin-bottom: 24px;
}
img.gallery {
  width: 80%;
  height: 500px;
  vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 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 {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  margin-top: 12px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px;
  }
}

footer {
  margin-top: 34px;
  padding: 12px;
  background-color: #161515;
  min-height: 10vh;
  width: 100%;
  color: white;
  text-align: center;
}
footer p {
  padding-top: 12px;
}
