/* Base Styles & Typography */
body {
    font-family: ui-monospace, 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', 'monospace';
    font-size: 18px; /*1.2rem;*/
    line-height: 1.4;
    margin: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
   -webkit-font-smoothing: antialiased; /* Better font rendering */
   -ms-text-size-adjust: 100%;
   -webkit-text-size-adjust: 100%;
   -moz-osx-font-smoothing: grayscale;
}

/* Light Mode (Default) */
body {
    background-color: #ffffff;
    color: #000000;
}

/* Dark Mode Detection */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #ffffff;
    }
}

/* Layout Constraints */
header {
    width: 55%;
    margin-bottom: 3rem;
}

main {
    width: 55%;
}

a {
    color: inherit;
}

footer {
    width: 55%;
    margin-top: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    main, header, footer {
        width: 95%;
    }
    body {
        padding: 1rem;
    }
}
