/* style.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    font-size: 3em;
    color: #2e8b57;
}

.output {
    margin-top: 20px;
    padding: 20px;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    width: 80%;
    max-width: 800px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: "Courier New", monospace;
}

input[type="text"] {
    padding: 10px;
    font-size: 16px;
    width: 300px;
    margin-top: 20px;
    margin-bottom: 10px;
}

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