* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}
main {
  color: #fcf7f8;
  padding: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
body {
  background-color: #433a3f;
}
header {
  max-height: 10%;
  background-color: #72a98f;
  display: flex;
  justify-content: space-between;
  align-items: top;
  img {
    max-height: 140px;
  }
  h1 {
    display: flex;
    justify-content: center;
    color: black;
    text-shadow: none;
    font-size: 68px;
  }
}
nav {
  display: flex;
  margin-top: 0;
  padding: 1em;
  height: 1px;
}

header nav a {
  display: flex;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
  padding: 0.5em;
  transition: 0.3s;
}
a:hover {
  color: #cbef43;
  font-weight: bold;
}
.flex-container {
  display: flex;
}
.recipe {
  flex: 1;
  flex-direction: column;
  background-color: #3d5a6c;
  color: #fcf7f8;
  padding: 2em;
  border-radius: 10px;
  max-width: 50%;
  min-width: 50%;
  filter: drop-shadow(black 0.5em 0.5em 5px);
  li {
    margin-left: 1em;
  }
}
.images {
  flex: 1;
  flex-wrap: wrap;
  img {
    max-width: 70%;
    display: block;
    margin: auto;
    margin-top: 4em;
    border-radius: 10px;
    filter: drop-shadow(black 0.5em 0.5em 5px);
  }
}
h1,
h2 {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #cbef43;
  font-size: 32;
  padding: 0 0 1em 0;
  text-shadow: 2px 2px black;
}
h3 {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  padding: 2em 0 1em 0;
  color: #8de969;
  font-size: 24;
  text-shadow: 1px 1px black;
}
h4 {
  padding: 1em 0 1em 0;
}
.print {
  background-color: #72a98f;
  color: black;
  padding: 1em;
  width: 10%;
  margin-top: 4em;
  margin-bottom: auto;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  gap: 4em;
}
footer {
  display: flex;
  flex: auto;
  background-color: #72a98f;
  color: black;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
}
form {
  background-color: #3d5a6c;
  color: #fcf7f8;
  padding: 2em;
  border-radius: 10px;
  filter: drop-shadow(black 0.5em 0.5em 5px);
  width: 50%;
}

fieldset {
  border: none;
}

input,
textarea,
select {
  padding: 8px;
  background-color: #433a3f;
  color: #fcf7f8;
  border-radius: 5px;
  border-color: transparent;
  margin-top: 1em;
}
#addNotes,
#method,
#ingredients,
#equip {
  width: 65%;
  height: 60px;
}
textarea {
  width: 65%;
  max-width: 65%;
}

button {
  background-color: #72a98f;
  color: black;
  padding: 1em;
  width: 25%;
  margin-top: 4em;
  margin-bottom: auto;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  gap: 4em;
  border-color: transparent;
}
button:hover {
  color: #cbef43;
  font-weight: bold;
}
.qAndA {
  font-family: "Roboto", sans-serif;
  color: #fcf7f8;
  padding: 2em;
  max-width: 80%;
  li {
    margin-left: 2em;
  }
  ul {
    margin-left: 2em;
  }
  h2 {
    font-family: "Roboto", sans-serif;
    color: #fcf7f8;
  }
  p {
    margin-left: 2em;
    margin-right: 2em;
  }
}
.fRecipe {
  display: flex;
  flex: auto;
  margin-left: 5em;
  padding: 2em;
  img {
    width: 40%;
    border-radius: 10px;
    filter: drop-shadow(black 0.5em 0.5em 5px);
  }
}
table,
th,
td {
  vertical-align: top;
  text-align: left;
  padding: 1em;
}

ul {
  list-style: none;
  margin-left: 2em;
}
