/* I hate writing CSS, so this is mostly going to be chatgpt slop */

@font-face { 
    font-family: 'Baskerville';
    src: url('https://sealthedeal.neocities.org/fonts/LibreBaskerville/LibreBaskerville.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face { 
    font-family: 'Baskerville';
    src: url('https://sealthedeal.neocities.org/fonts/LibreBaskerville/LibreBaskerville-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

body {
    background-color: white;
    color: black;
    font-family: 'Baskerville', serif;
    text-align: justify;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

h1, h2, h3 {
    max-width: 800px;
    margin: 0 auto;
}

p {
    max-width: 800px;
    margin: 20px auto;
}

ul {
    padding-left: 20px;
    margin: 20px auto;
    max-width: 800px;
    list-style-position: inside;
}

li {
    margin-bottom: 10px;
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
        color: white;
    }

    h1, h2, h3, p, ul {
        color: white; /* Ensure text is visible against the dark background */
    }
}

img {
    display: block; /* Make the image a block element */
    margin: 20px auto; /* Center the image with margin */
    max-width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain aspect ratio */
}