/* TODO: Add your styles here */

/* Given CSS rules below */
body {
  margin: 0;
  font-family: Helvetica, sans-serif;
}

header {
  border-bottom: 2px solid #93b5c6;
  background-color: #ddedaa;
  padding: 8px;
  display: flex;
  justify-content: space-between;
}

.logo {
  color: #bd4f6c;
  font-size: 18px;
}

.content {
  margin-left: 30px;
  display: flex;
  flex-wrap: wrap;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  flex-basis: 70%;
}

.title {
  border-bottom: 1px dashed #93b5c6;
  display: flex;
  align-items: baseline;
}

.title h1 {
  color: #bd4f6c;
}

.title p {
  color: #93b5c6;
  margin-left: 30px;
}

.summary {
  margin-top: 30px;
  display: flex;
  justify-content: space-evenly;
  flex-grow: 1;
  flex-basis: 100%;
}

.summary > div {
  background-color: #ddedaa;
  border: 2px solid #93b5c6;
  border-radius: 5px;
  color: #bd4f6c;
  padding: 5px;
  width: 210px;
  display: flex;
  justify-content: space-between;
}

.related-content {
  margin-left: 100px;
  flex-grow: 1;
  flex-basis: 20%;
}

.related-content h2 {
  font-size: 18px;
}

.ingredients {
  flex-grow: 1;
  flex-basis: 45%;
}

.directions {
  flex-grow: 1;
  flex-basis: 45%;
}
