* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --meadow-green: #9dc171;
    --moss-green: #9eab49;
    --wood-brown: #8f6a39;
    --rose-red: #b50c03;
    --dairy-cream: #fffdcf;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background-color: var(--dairy-cream);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "Lora", serif;
    color: #333;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo {
    width: 75vmin;
    height: auto;
    max-width: 100%;
}

footer {
    background-color: transparent;
    text-align: center;
    padding: 20px;
    border-top: 2px solid var(--moss-green);
}

footer p {
    color: var(--wood-brown);
    font-size: 14px;
    font-family: "Lora", serif;
}

footer a {
    color: var(--rose-red);
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

.cinzel-decorative-regular {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-style: normal;
}

.cinzel-decorative-bold {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-style: normal;
}

.cinzel-decorative-black {
  font-family: "Cinzel Decorative", serif;
  font-weight: 900;
  font-style: normal;
}

/* Brand-specific font classes */

.title {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-style: normal;
  color: var(--wood-brown);
}

.subtitle {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--meadow-green);
}

.heading {
  font-family: "Lora", serif;
  font-weight: 700;
  font-style: normal;
  color: var(--moss-green);
}

.quote {
  font-family: "Lora", serif;
  font-weight: 400;
  font-style: italic;
  color: var(--wood-brown);
}

.caption {
  font-family: "Lora", serif;
  font-weight: 400;
  font-style: italic;
  color: var(--moss-green);
  font-size: 12px;
}
