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

:root {
    --forest-green: #1d4d2b;
    --cascadia-blue: #3b7ea1;
    --black: #1a1a1a;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --a-bit-tan: #edd691;
    --dark-tan: #a17b0b;
    --darker-tan: #574309;
    --lucky-grouse-back: #f7f4eb;
    --grouse-yellow: #c4a340;
    --grouse-grey: #44545d;
    --grouse-brown: #5e5d56;
}

.rosarivo-regular {
  font-family: "Rosarivo", cursive;
  font-weight: 400;
  font-style: normal;
}

.rosarivo-regular-italic {
  font-family: "Rosarivo", cursive;
  font-weight: 400;
  font-style: italic;
}

body {
    font-family: 'Rosarivo', serif;
    color: var(--black);
    line-height: 1.5;
    font-size: 18px;
    background: var(--lucky-grouse-back);
    display: flex;
    flex-direction: column;

}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container img {

    max-width: 500px;
    height: auto;
    display: block;
}


.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--grouse-yellow);
    color: var(--black);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background: var(--dark-tan);
}

footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    font-size: 10pt;
    line-height: 2;
    padding: 1rem;
    position: fixed;
    margin-top: auto;
    width:100%;
    bottom: 0;
}

@media (max-width: 768px) {

  .container img {
  max-width: 400px;
  }

  footer {
    font-size:8pt
  }

}


@media (max-width: 400px) {

  .container img {
  max-width: 250px;
  }

  footer {
    font-size:6pt
  }

}
