
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #f0f8ff;
    background-color: #111;
    margin: 0;
    padding: 2px;
    color: #333;
}
h1 {
    color: #ff6b6b;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.container {
/*
    max-width: 900px;
*/
    width: 98%;
    margin: 0 auto;
    background-color: white;
    background-color: lightgrey;
    padding: 2px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
textarea {
    width: 100%;
    height: 400px;
    padding: 1px;
    border: 2px solid #4ecdc4;
    border-radius: 5px;
/*
    font-family: 'Courier New', monospace;
*/
    font-family: 'Josefin Sans', monospace;
    font-size: 14px;
    font-size: 18px;
    resize: both;
    background-color: #f8f9fa;
}
.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #4ecdc4;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}
button:hover {
    background-color: #45b7b8;
    transform: scale(1.05);
}
.success {
    color: #2ecc71;
    text-align: center;
    font-weight: bold;
    margin: 10px 0;
}
.error {
    color: #e74c3c;
    text-align: center;
    font-weight: bold;
    margin: 10px 0;
}
.back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}
.back-link:hover {
    color: #2980b9;
}
