/* Generated by gemini */

:root {
    --bg-color: #f9f7f2;
    --accent-blue: #0000ff;
    --text-color: #1a1a1a;
    --max-width: 800px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "Times New Roman", Times, serif;
    line-height: 1.6;
    margin: 0;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    max-width: var(--max-width);
    width: 100%;
}

header {
    text-align: center;
    width: 100%;
    max-width: var(--max-width);
}

nav {
    margin-bottom: 2rem;
    text-align: right;
}

nav a {
    margin-left: 15px;
    text-transform: lowercase;
    font-style: italic;
}

h1, h2, h3 {
    font-weight: normal;
    text-transform: lowercase;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    font-style: italic;
}

h1 {
    font-size: clamp(3rem, 10vw, 5rem); /* Makes it responsive */
    line-height: 0.8;
    letter-spacing: -2px;
    font-style: italic;
    margin-top: 2rem;
}

/* The Date Styling */
.date-location {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 3rem;
    font-style: italic;
}

a { color: var(--accent-blue); text-decoration: underline; }

button, .button {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 10px 20px;
    font-family: "Times New Roman", serif;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: lowercase;
    font-style: italic;
}

img {
    max-width: 100%;
    filter: grayscale(100%) contrast(110%);
    margin: 2rem 0;
}

footer {
    margin-top: 5rem;
    font-size: 0.8rem;
    opacity: 0.6;
}
