@font-face {
  font-family: 'Yoga';
  font-display: swap;
  src: url('/_fonts/yoga.woff2') format('woff2');
}

@font-face {
  font-family: 'Yoga';
  font-display: swap;
  src: url('/_fonts/yoga-bold.woff2') format('woff2');
  font-weight: bold;
}

@font-face {
  font-family: 'Yoga';
  font-display: swap;
  src: url('/_fonts/yoga-italic.woff2') format('woff2');
  font-style: italic;
}

body { 
  font-family: Yoga, sans-serif;
  padding-left: .5em;
}
@media (min-width: 50em) {
  body {
	padding-left: 1em;
  }
}

h1 {
  font-weight: normal;
}

.hiddedevriesnl {
  color: black;
  display: block;
}
.hiddedevriesnl:hover,
.hiddedevriesnl:focus {
  color: darkblue;
}
.hiddedevriesnl svg {
  max-width: 4em;
}
@media (min-width: 50em) {
  .hiddedevriesnl svg { 
	max-width: 8em;
	position: fixed;
	right: 1em;
	top: 1em;
  }
}

input[type=search] {
	padding: .5em 0.75em;
	margin: 1em 0 2em; 
	font-size: 1.2em;
	width: 100%;
}

summary h2 {
	display: inline;
}

.recipe-index {
	list-style: none;
	margin: 0;
	padding: 0;
}
.recipe-index > li > a {
	border-bottom: 1px solid #ccc;
	min-inline-size: 4.5em;
	font-size: 1em;
	text-decoration: none;
	color: inherit;
	display: flex;
	gap: .75em; 
	flex: 1;
}
.recipe-index > li:first-child > a {
	border-top: 1px solid #ccc;
}
.recipe-index > li > a:hover {
	background-color: #f6e874;
}
.recipe-index > li > a > div > img {
	margin: 0;
	height: 100%;
	aspect-ratio: 1 / 1;
}
.recipe-index .recipe-title {
	font-weight: bold;
}
.recipe-index .recipe-tags {
	display: block;
	font-style: italic;
}
.recipe-index .recipe-index-info {
	align-self: center;
}

.recipe-meta {
	display: grid;
	grid-template-columns: auto 1fr;
}
	.recipe-meta dt {
		font-weight: bold;
		grid-column: 1 / 2;
	}
	.recipe-meta dt::after {
		content: ': ';
	}
	.recipe-meta dd {
		grid-column: 2 / 3;
		margin-inline-start: .5em;
	}

.tag {
	border: 1px solid #ccc;
	padding: 0.25em .5em;
	line-height: .9;
	font-size: 80%;
}

.directions {
	padding-left: 0.85em;
}
.directions li {
	 margin-bottom: 1em;
}

summary:has(h2)::marker {
	width: 2em;
}