body {
    background-color: #ffffff;
    color: #000000;
    font-family: "Courier New", monospace;
    max-width: 700px;
    margin: 40px auto;
}

.container {
    margin-top: 20px;
}

h2 {
    border-bottom: 1px solid black;
    padding-bottom: 5px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input, textarea {
    border: 1px solid black;
    padding: 6px;
    font-family: monospace;
    background: white;
    color: black;
}

button {
    border: 1px solid black;
    background: black;
    color: white;
    padding: 8px;
    cursor: pointer;
}

button:hover {
    background: white;
    color: black;
}

.ascii-header {
    font-size: 12px;
}
