body {
  background-color: black;
  color: white;
  font-family: Arial, Times, serif;
  margin: 0;
	padding: 0;
}
html, body, body>div#app {
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: stretch;
	align-content: stretch;
}
body>div#app {
  flex: 1 0 auto;
	min-height: 100vh;
}
body>div#app>header {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 0.5rem 1rem;
  flex: 0 0 auto;
}
body>div#app>header a {
  color: white;
  text-decoration: none;
}
body>div#app>main {
  background-color: white;
  color: black;
  padding: 1rem;
  flex: 1 0 auto;
}
body>div#app>main .recipe-name {
  border-bottom: 1px solid #ddd;
}
body>div#app>main ul {
  /* list-style-type: circle; */
  padding-left: 30px;
}
body>div#app>main>:first-child,
body>div#app>main>:first-child>:first-child,
body>div#app>main>:first-child>:first-child>:first-child {
  margin-top: 0;
  padding-top: 0;
}
body>div#app>main>:last-child,
body>div#app>main>:last-child>:last-child,
body>div#app>main>:last-child>:last-child>:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
body>div#app>footer {
  font-size: 8px;
  text-align: center;
  padding: 0.3rem 1rem;
  flex: 0 0 auto;
}

@media print {
  body {
    background-color: white;
    color: black;
    font-family: Arial, Times, serif;
  }
  body>div#app>header,
  body>div#app>footer {
    display: none;
  }
}
