html{
  background: #c9c089; /* same as header/footer */
}

body {
    margin: 0;
    background-color: white;
    font-family: 'Courier New', Courier, monospace;
}

html, body{
  overscroll-behavior-y: none;
}

button,
input,
select,
textarea,
a {
    font-family: inherit;
}

.menu {
    background: #c9c089;
    width: 100%;

    padding: 4px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    text-decoration: none;
    font-size: 20px;
    color: #000;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
}

.brand:hover {
    color: white;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 14px;
}

.nav-button {
    display: inline-block;
    padding: 6px 10px;
    font-size: 12px;
    font-family: Monaco, monospace;
    cursor: pointer;
    background-color: white;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: #000;
}

.nav-button:hover {
    background-color: #4CAF50;
    color: white;
}

.main {
    color: #444444;
    padding: 30px 10% 10px 10%;
}

p {
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    text-align: left;
}

.article p{
  text-align: left;
}

p.text-center{
  text-align: center;
}

.video-wrap {
    max-width: 1171px;
}

.site-footer {
    font-family: 'Courier New', Courier, monospace;
    background: #c9c089;
    font-size: 13px;
    color: #000000;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 8px 12px;
}

.back-to-top {
    position: fixed;
    right: 4%;
    bottom: 72px;
    text-decoration: none;
    font-size: 120%;
}

.cta-outline {
    transition: transform .15s ease, box-shadow .15s ease;
}

.cta-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .20);
}

.woof-line{
  display: block;     /* full-width like a normal <p> */
  width: 100%;
  text-align: center; /* force center */
  transition: transform .15s ease, color .15s ease;
}

.woof-line:hover {
    transform: translateY(-2px);
    color: #198754;
    cursor: default;
}

.beg-dog {
    transition: transform .15s ease, filter .15s ease;
}

.beg-dog:hover {
    transform: scale(1.05) rotate(-1deg);
    filter: brightness(1.05);
    cursor: pointer;
}

.halo-hero {
    width: 100%;
    max-width: clamp(420px, 70vw, 900px);
    height: auto;
}

.beg-hero {
    width: 100%;
    max-width: clamp(360px, 60vw, 700px);
    height: auto;
}

.env-hero {
    max-width: 980px;
    margin: 0 auto 22px auto;
    text-align: center;
}

.env-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 38px;
    margin: 0 0 10px 0;
    display: inline-block;
    position: relative;
    cursor: default;
    transition: transform 200ms ease, color 200ms ease, text-shadow 200ms ease;
}

.env-title:hover {
    transform: translateY(-2px);
    color: #146c43;
    text-shadow: 0 6px 18px rgba(20, 108, 67, 0.18);
}

.env-lead {
    max-width: 60ch;
    margin: 0 auto;
}

.article {
    max-width: 980px;
    margin: 0 auto;
}

.image {
    margin: 18px 0 22px 0;
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.figure-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .06);
}

.caption {
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;
    font-style: italic;
    margin-top: 8px;
}

.caption a {
    text-decoration: none;
    color: black;
}

.caption a:hover {
    cursor: pointer;
    color: #4CAF50;
}