body {
    font-family: Arial, sans-serif;
    padding: 40px;
    background-color: white;
    color: black;
}

h1 {
    color: white;
}

h2 {
    margin-top: 30px;
}

p, li {
    font-size: 18px;
}

.note {
    margin-top: 40px;
    color: gray;
    font-style: italic;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #eaeaea;
    }

    h1, h2 {
        color: #ffffff;
    }

    .note {
        color: #bbbbbb;
    }
}

textarea {
    width: 100%;
    height: 150px;
    margin-top: 20px;
    padding: 10px;
    font-size: 16px;
}

button {
    margin-top: 15px;
    padding: 10px 25px;
    font-size: 16px;
    cursor: pointer;
}

.result {
    margin-top: 30px;
}

method {
    margin-top: 25px;
    text-align: left;
}

h3 {
    margin-bottom: 5px;
}

blockquote {
    margin-top: 30px;
}

hr {
    margin: 50px 0;
}

.scroll-target {
    scroll-margin-top: 20px;
}

.text-persist {
    min-height: 120px;
    resize: vertical;
}