@import url("https://fonts.googleapis.com/css2?family=Hammersmith+One&family=Monoton&family=Source+Serif+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap");

:root {
  --color-red: #c20a0a;
  --color-blue: #52527a;
  --color-black: #000;
  --color-beige: #f9f4ec;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--color-beige);
  color: var(--color-black);
  font-size: 18px;
  text-rendering: geometricPrecision;
}

/* Page structure */

main {
  display: block;
  margin: 0 auto;
  max-width: 375px;
  padding: 48px 24px;
  width: 100%;
}

/* Logo */

svg {
  font-size: 100%;
  margin-bottom: 2.5em;
}
text {
  fill: var(--color-red);
}

textPath {
  font-family: "Monoton", cursive;
  font-size: 64px;
  letter-spacing: 0.125em;
  text-transform: uppercase;
}

/* Typography */

h2 {
  /* #C20A0A  red */
  color: var(--color-red);
  font-family: "Monoton", cursive;
  font-size: 2.222222em;
  letter-spacing: 0.2em;
  margin-bottom: 1.5em;
  text-transform: uppercase;
}

.recipe h3 {
  color: var(--color-red);
  font-family: "Hammersmith One", sans-serif;
  font-size: 1.222222em;
  letter-spacing: 0.16em;
  line-height: 1em;
  margin-bottom: 0.333333em;
  text-transform: uppercase;
}

.ingredients,
.notes {
  font-family: "Source Serif Pro", serif;
  line-height: 1.277778;
}

.ingredients li {
  margin-bottom: 0.333333em;
}

.notes {
  font-size: 16px;
  font-style: italic;
}

/* Spacing */

.recipe {
  margin-bottom: 2.666667em;
}
.recipe:last-of-type {
  margin-bottom: 0;
}
