/* Styles for extra large devices */
.Main {
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}
.RecipieIntro {
  display: flex;
  flex-direction: column;
  width: 60%;
  margin-left: 20%;
  height: auto;
  align-items: center;
}
.RecipieIntro h1 {
  font-size: 55px;
  font-family: "Playfair Display", serif;
  color: #b89e6b;
  margin: 0px;
}
.RecipieIntro p {
  font-size: 24px;
  font-family: "Playfair Display", serif;
  margin: 0px;
}
.RecipieImage {
  width: 100%;
  height: auto;
}
.RecipieImage img {
  width: 36%;
  margin-top: 3em;
  margin-bottom: 3em;
  margin-left: 32%;
  height: auto;
}
.Ingredidents {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 60%;
  margin-left: 20%;
  height: auto;
  align-items: center;
}
.Ingredidents h1 {
  font-size: 55px;
  font-family: "Playfair Display", serif;
  color: #b89e6b;
  margin: 0px;
  margin-top: 1.5em;
}

.Ingredidents ul li {
  display: flex;
  align-items: center;
  vertical-align: middle;
  font-size: 18px;
  font-family: "Playfair Display", serif;
  margin: 0px;
  border-bottom: lightgray solid 1px;
  text-align: center;
}
.Instructions {
  display: flex;
  flex-direction: column;

  width: 80%;
  margin-left: 10%;
  height: auto;
  align-items: center;
}
.Instructions h1 {
  font-size: 55px;
  font-family: "Playfair Display", serif;
  color: #b89e6b;
  margin: 0px;
  margin-top: 1.5em;
}
.Instructions ol {
  list-style-type: none;
  column-count: 1;

  align-items: baseline;
  margin-bottom: 30px;
}
.ListOrganizer p {
  display: flex;
  flex-direction: row;
  font-size: 18px;
  overflow: wrap;
  font-family: "Playfair Display", serif;
  margin: 0px;
  max-width: 70%;
}

.ListOrganizer {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.CheckBoxStyle {
  width: 58px;
  height: 58px;
  border: #b89e6b solid 5px;
  position: relative;
  cursor: pointer;
  margin: 20px;
}

.CheckBoxStyle .checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 59px;
  height: 59px;
  background-color: #917c54;
  opacity: 0;
}

.CheckBoxStyle.checked .checkmark {
  opacity: 1;
}
.ListOrganizer {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: lightgray solid 1px;
  margin-bottom: 10px;
}
.InstructionsList {
  display: flex;
  flex-direction: column;

  margin: 0px;
}
@media (min-width: 1440px) and (max-width: 1919.98px) {
  .Main {
    padding: 20px;
  }

  .RecipieIntro {
    width: 70%;
    margin-left: 15%;
    font-size: 40px;
  }

  .RecipieIntro h1 {
    font-size: 50px;
  }

  .RecipieIntro p {
    font-size: 20px;
  }

  .RecipieImage img {
    width: 40%;
    margin-top: 2em;
    margin-bottom: 2em;
    margin-left: 30%;
  }

  .Ingredidents {
    width: 70%;
    margin-left: 15%;
    font-size: 30px;
  }

  .Ingredidents h1 {
    font-size: 40px;
  }

  .Ingredidents ul li {
    font-size: 16px;
  }

  .Instructions {
    width: 80%;
    margin-left: 10%;
    font-size: 30px;
  }

  .Instructions h1 {
    font-size: 40px;
  }

  .Instructions ol {
    column-count: 2;
    column-gap: 40px;
  }

  .ListOrganizer p {
    font-size: 16px;
    max-width: 80%;
  }

  .CheckBoxStyle {
    width: 48px;
    height: 48px;
    margin: 10px;
  }

  .CheckBoxStyle .checkmark {
    width: 49px;
    height: 49px;
  }

  .ListOrganizer {
    margin-bottom: 15px;
  }

  .InstructionsList {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .Main {
    padding: 20px;
  }

  .RecipieIntro {
    width: 70%;
    margin-left: 15%;
    font-size: 40px;
  }

  .RecipieIntro h1 {
    font-size: 50px;
  }

  .RecipieIntro p {
    font-size: 20px;
  }

  .RecipieImage img {
    width: 40%;
    margin-top: 2em;
    margin-bottom: 2em;
    margin-left: 30%;
  }

  .Ingredidents {
    width: 70%;
    margin-left: 15%;
    font-size: 30px;
  }

  .Ingredidents h1 {
    font-size: 40px;
  }

  .Ingredidents ul li {
    font-size: 16px;
  }

  .Instructions {
    width: 80%;
    margin-left: 10%;
    font-size: 30px;
  }

  .Instructions h1 {
    font-size: 40px;
  }

  .Instructions ol {
    column-count: 2;
    column-gap: 40px;
  }

  .ListOrganizer p {
    font-size: 16px;
    max-width: 80%;
  }

  .CheckBoxStyle {
    width: 68px;
    height: 68px;
    margin: 10px;
  }

  .CheckBoxStyle .checkmark {
    width: 69px;
    height: 69px;
  }

  .ListOrganizer {
    margin-bottom: 15px;
  }

  .InstructionsList {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Styles for large devices */

  .Main {
    background-color: #d9d9d9;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .RecipieIntro {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin-left: 20%;
    height: auto;
    align-items: center;
  }

  .RecipieIntro h1 {
    font-size: 40px;
    font-family: "Playfair Display", serif;
    color: #b89e6b;
    margin: 0;
  }

  .RecipieIntro p {
    font-size: 20px;
    font-family: "Playfair Display", serif;
    margin: 0;
  }

  .RecipieImage img {
    width: 60%;
    margin-top: 2em;
    margin-bottom: 2em;
    margin-left: 20%;
    height: auto;
  }

  .Ingredidents {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 60%;
    margin-left: 20%;
    height: auto;
    align-items: center;
  }

  .Ingredidents h1 {
    font-size: 40px;
    font-family: "Playfair Display", serif;
    color: #b89e6b;
    margin: 0;
    margin-top: 1.5em;
  }

  .Ingredidents ul li {
    display: flex;
    align-items: center;
    vertical-align: middle;
    font-size: 16px;
    font-family: "Playfair Display", serif;
    margin: 0;
    border-bottom: lightgray solid 1px;
    text-align: center;
  }

  .Instructions {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-left: 10%;
    height: auto;
    align-items: center;
  }

  .Instructions h1 {
    font-size: 40px;
    font-family: "Playfair Display", serif;
    color: #b89e6b;
    margin: 0;
    margin-top: 1.5em;
  }

  .Instructions ol {
    list-style-type: decimal;
    column-count: 1;
    align-items: baseline;
    margin-bottom: 30px;
  }

  .ListOrganizer p {
    display: flex;
    flex-direction: row;
    font-size: 16px;
    overflow-wrap: break-word;
    font-family: "Playfair Display", serif;
    margin: 0;
    max-width: 70%;
  }

  .CheckBoxStyle {
    width: 50px;
    height: 50px;
    border: #b89e6b solid 3px;
    position: relative;
    cursor: pointer;
    margin: 10px;
  }

  .CheckBoxStyle .checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: #917c54;
    opacity: 0;
  }

  .CheckBoxStyle.checked .checkmark {
    opacity: 1;
  }

  .ListOrganizer {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .InstructionsList {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  /* Styles for medium devices */

  .Main {
    width: 100%;
    height: auto;
  }

  .RecipieIntro {
    width: 80%;
    margin-left: 10%;
  }

  .RecipieIntro h1 {
    font-size: 40px;
  }

  .RecipieIntro p {
    font-size: 18px;
  }

  .RecipieImage img {
    width: 60%;
    margin-top: 2em;
    margin-bottom: 2em;
    margin-left: 20%;
  }

  .Ingredidents {
    width: 80%;
    margin-left: 10%;
  }

  .Ingredidents h1 {
    font-size: 40px;
    margin-top: 1em;
  }

  .Ingredidents ul li {
    font-size: 16px;
  }

  .Instructions {
    width: 90%;
    margin-left: 5%;
  }

  .Instructions h1 {
    font-size: 40px;
    margin-top: 1em;
  }

  .Instructions ol {
    column-count: 1;
  }

  .ListOrganizer p {
    font-size: 16px;
    max-width: 80%;
  }

  .CheckBoxStyle {
    width: 38px;
    height: 38px;
    margin: 8px;
  }
  .CheckBoxStyle .checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    background-color: #917c54;
    opacity: 0;
  }

  .CheckBoxStyle.checked .checkmark {
    opacity: 1;
  }

  .ListOrganizer {
    margin-bottom: 8px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Styles for small devices */

  .RecipieIntro {
    width: 90%;
    margin-left: 5%;
  }

  .RecipieIntro h1 {
    font-size: 33px;
  }

  .RecipieIntro p {
    font-size: 16px;
  }

  .RecipieImage img {
    width: 70%;
    margin-top: 2em;
    margin-bottom: 2em;
    margin-left: 15%;
  }

  .Ingredidents {
    width: 90%;
    margin-left: 5%;
  }

  .Ingredidents h1 {
    font-size: 33px;
  }

  .Ingredidents ul li {
    font-size: 16px;
  }

  .Instructions {
    width: 90%;
    margin-left: 5%;
  }

  .Instructions h1 {
    font-size: 33px;
  }
  .ListOrganizer {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    border-bottom: lightgray solid 1px;
    margin-bottom: 10px;
  }

  .ListOrganizer p {
    font-size: 16px;
    max-width: 90%;
  }

  .CheckBoxStyle {
    width: 25px;
    height: 25px;
  }

  .CheckBoxStyle .checkmark {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 575.98px) {
  .RecipieIntro {
    width: 90%;
    margin-left: 5%;
  }

  .RecipieIntro h1 {
    font-size: 30px;
  }

  .RecipieIntro p {
    font-size: 16px;
  }

  .RecipieImage img {
    width: 80%;
    margin-top: 2em;
    margin-bottom: 2em;
    margin-left: 10%;
  }

  .Ingredidents {
    width: 90%;
    margin-left: 5%;
  }

  .Ingredidents h1 {
    font-size: 30px;
  }

  .Ingredidents ul li {
    font-size: 14px;
  }

  .Instructions {
    width: 90%;
    margin-left: 5%;
  }

  .Instructions h1 {
    font-size: 30px;
  }

  .ListOrganizer p {
    font-size: 14px;
    max-width: 90%;
    flex-wrap: nowrap;
  }

  .ListOrganizer {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    border-bottom: lightgray solid 1px;
    margin-bottom: 10px;
  }

  .CheckBoxStyle {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .CheckBoxStyle .checkmark {
    width: 31px;
    height: 31px;
  }
}
