body {
    background: #eaebea;
}

/* Header container for title and button */
.header-container {
    display: flex;
    justify-content: space-between;  /* This will push the notes link to the right */
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

/* Page title styling to match buttons */
.page-title {
    font-family: "Noto Sans Mono", monospace;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

/* Noto Sans Mono font styling for paragraph */
.noto-sans-mono-unique {
    font-family: "Noto Sans Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 14px;  /* Match your button size */
    line-height: 1.3;  /* For consistent line spacing */
    -webkit-font-smoothing: antialiased;  /* Better font rendering in webkit browsers like Brave */
    -moz-osx-font-smoothing: grayscale;   /* Better font rendering in Firefox */
    
    
    /* Fixed width based on 113 characters */
    width: 113ch;  /* ch unit = width of '0' character in current font */
    max-width: 113ch;
    white-space: pre-wrap;  /* Preserves whitespace and wraps text */
    word-wrap: break-word;  /* Breaks long words if needed */
    overflow-wrap: break-word;  /* Modern alternative to word-wrap */
    margin: 0; /*Claude said so*/
}

/* Button styling */
.button {
    font-family: "Noto Sans Mono", monospace;
    background-color: transparent;
    border: 1px solid #000;
    padding: 5px 15px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.button:hover {
    background-color: #000;
    color: #eaebea;
}

/* Image styling to match text width */
.noto-sans-mono-unique img {
    width: 100%;
    height: auto;
}