*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  z-index: 1;
  border-bottom: 2px solid black;
}
header a {
  text-decoration: none;
}

#logoText {
  font-family: "Dancing Script", Helvetica, cursive;
  font-size: 30px;
  margin: 1rem 0rem 1rem 1rem;
}

#headerNavbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 1rem 1rem 0rem;
}
#headerNavbar a {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: black;
  margin: 0rem 0.5rem;
}

footer {
  background-color: black;
  color: white;
  position: fixed;
  bottom: 0px;
  width: 100%;
}

#footerNavbar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0.5rem 0rem;
}
#footerNavbar a {
  border-left: 1px solid white;
  padding: 0px 5vw;
  text-decoration: none;
  color: white;
}
#footerNavbar #firstLink {
  border-left: 0px solid white;
}

#socialMedia {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 0.5rem;
}
#socialMedia svg {
  margin: 0rem 2vw;
}

#copyright {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 0.5rem;
}

.recipe-of-month-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.recipe-of-month-hero1 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 15px;
  padding: 15px;
  max-width: 1007px;
}
.recipe-of-month-hero1 .title, .recipe-of-month-hero1 .ingredients {
  padding: 15px;
  border: 1px solid black;
  box-shadow: 3px 6px 10px gray, -3px 6px 10px gray;
}
.recipe-of-month-hero1 .ingredients {
  min-width: 270px;
}
.recipe-of-month-hero1 .image {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  min-width: 320px;
}
.recipe-of-month-hero1 .image img {
  width: 100%;
  padding: 25px;
  border: 1px solid black;
  box-shadow: 3px 6px 10px gray, -3px 6px 10px gray;
}

@media screen and (width < 640px) {
  .recipe-of-month-hero1 {
    display: grid;
    grid-template-columns: 1fr;
  }
  .recipe-of-month-hero1 .image {
    grid-row: span 1;
  }
}
.recipe-of-month-hero2 {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding: 15px;
  max-width: 1007px;
}
.recipe-of-month-hero2 .preparation {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}
.recipe-of-month-hero2 .preparation .preparationList {
  width: 100%;
  padding: 15px;
  border: 1px solid black;
  box-shadow: 3px 6px 10px gray, -3px 6px 10px gray;
}
.recipe-of-month-hero2 .preparation .preparationInstruction {
  width: 100%;
  padding: 15px;
  border: 1px solid black;
  box-shadow: 3px 6px 10px gray, -3px 6px 10px gray;
}

li {
  font-size: 14px;
}

.primaryList > li {
  margin-left: 16px;
}

.secondaryList > li {
  margin-left: 32px;
}

ol > li {
  margin-left: 25px;
}

i {
  font-size: 12px;
}

.container-flex-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}
.container-flex-row .card0, .container-flex-row .card1, .container-flex-row .card2, .container-flex-row .card3 {
  min-width: 250px;
  max-width: 400px;
}
.container-flex-row .card0 img, .container-flex-row .card1 img, .container-flex-row .card2 img, .container-flex-row .card3 img {
  width: 100%;
}
.container-flex-row span {
  font-family: "Dancing Script", Helvetica, cursive;
  font-size: 25px;
}
.container-flex-row .card1, .container-flex-row .card2, .container-flex-row .card3 {
  border-radius: 15px;
  padding: 15px;
  border: 1px solid black;
  box-shadow: 3px 6px 10px gray, -3px 6px 10px gray;
}

.container-flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
}

a {
  color: black;
}

@media screen and (width < 580px) {
  .container-flex-row {
    flex-direction: column;
    align-items: center;
  }
}
body {
  background-color: white;
  font-family: "Nunito", Arial, Helvetica, sans-serif;
}

hr {
  border: 1px solid black;
}

main {
  margin-top: 70px;
  margin-bottom: 114px;
}
main a {
  text-decoration: none;
}

#mainHeader {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
#mainHeader p {
  margin: 0.5rem 0rem;
  font-size: 14px;
}

.recipesContainer {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  width: 300px;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (width > 480px) {
  .recipesContainer {
    width: 70%;
    grid-template-columns: repeat(2, 1fr);
  }
  #mainHeader p {
    font-size: 18px;
  }
}
@media screen and (width > 900px) {
  .recipesContainer {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (width > 1400px) {
  .recipesContainer {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (width > 1900px) {
  .recipesContainer {
    grid-template-columns: repeat(5, 1fr);
  }
}
.imageContainer {
  position: relative;
  height: 200px;
  overflow: hidden;
  box-shadow: 3px 6px 10px gray, -3px 6px 10px gray;
}
.imageContainer img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  min-width: 100%;
  height: 100%;
}
.imageContainer .overlayText {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-color: black;
  opacity: 70%;
  color: white;
  text-align: center;
  padding: 1rem 0rem;
}/*# sourceMappingURL=style.css.map */