body, h1, h2, p {
    margin: 0;
    padding: 0;
    color: #333;
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-size: 24px;
}

body {
    background-color: #f9f9f9;
    padding: 40px;
    line-height: 1.6;
}

.layout-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: start;
    gap: 20px;
}

.logo-container {
    grid-column: 1;
    text-align: center;
}

.logo-stripe {
    background-image: url('doodle.svg');
    background-repeat: repeat-y;
    background-size: contain;
    width: 100%;
    max-width: 80px;
    height: 100vh;
    background-position: center;
    position: fixed;
    top: 0;
    z-index: -1;
}

.content-container {
    grid-column: 2;
}

h1 {
    font-size: 2.5em;
    font-weight: normal;
    margin-bottom: 20px;
}

hr {
    border: 0;
    border-top: 4px solid black;
    margin: 20px 0;
}

.about {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
}

a {
    color: #333;
    text-decoration: none;
}

a:visited {
    color: #333;
}

a:hover, a:focus, a:active {
    color: #333;
}

@media (prefers-color-scheme: dark) {
    body, h1, h2, p {
        background-color: #151515;
        color: #eee;
    }

    hr {
        border-top: 1px solid white;
    }

    .logo-stripe {
        filter: brightness(0) invert(1);
    }

    a {
        color: #eee;
    }

    a:visited {
        color: #eee;
    }

    a:hover, a:focus, a:active {
        color: #eee;
    }
}
