body {
    background-color: #fbf9e4;
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
}

h1 a,
h1 a:visited,
h1 a:hover {
    color: inherit;
    text-decoration: none;
}

nav {
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}

a {
    color: #0e72c9;
    text-decoration: underline;
}

a:visited {
    color: #7a4bd1;
}

a:hover {
    color: #eb5050;
    text-decoration: underline;
}

nav a {
    font-weight: 500;
}

.blink-link:hover span,
.blink-link.blink-active span {
    animation: blink 0.3s steps(1, end) calc(var(--i) * -0.05s) 5;
}

@keyframes blink {
    0%   { color: #e83e8c; }
    17%  { color: #17a2b8; }
    33%  { color: #8b3ee8; }
    50%  { color: #28a745; }
    67%  { color: #f4742b; }
    83%  { color: #2b7cf4; }
    100% { color: #e83e8c; }
}

.hero {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero img {
    width: 100%;
    max-width: 806px;
    height: auto;
    border-radius: 8px;
}

.content {
    width: 100%;
    max-width: 806px;
    text-align: left;
    line-height: 1.6;
}

.content > :first-child,
.content p:first-of-type {
    margin-top: 0;
}

.content ul {
    display: flow-root;
    padding-left: 2.5rem;
    margin: 1rem 0;
}

.content li {
    margin-bottom: 0.4rem;
}

.content li:last-child {
    margin-bottom: 0;
}

.content img {
    float: left;
    width: 280px;
    max-width: 40%;
    height: auto;
    margin: 0 1.5rem 1rem 0;
    border-radius: 8px;
}

.content img.centered {
    float: none;
    display: block;
    width: 500px;
    max-width: 100%;
    margin: 0 auto 1.5rem;
}

.content details {
    background-color: #f0edcf;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-style: italic;
}

.content .video iframe {
    display: block;
    margin: 1rem auto;
    max-width: 100%;
}

.content summary {
    cursor: pointer;
    font-weight: 500;
    font-style: normal;
    color: #0e72c9;
    width: fit-content;
    text-decoration: underline dotted;
}

.content summary:hover {
    color: #eb5050;
}

hr {
    border: none;
    margin: 2rem 0;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 0.6rem;
    line-height: 1;
    opacity: 0.7;
    overflow: hidden;
    white-space: nowrap;
}

hr::before {
    content: "🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾";
}

footer {
    margin-top: auto;
    padding-top: 2rem;
    font-size: 0.75rem;
    color: #666;
}
