/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    width: 80%;
    padding: 100px;
    max-width: 700px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}


textarea {
    width: 100%;
    height: 200%;
    padding: 25px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    resize: none;
    margin-bottom: 20px;
    outline: none;
    align-content: center;
}

textarea:focus {
    border-color: #007BFF;
}


button {
    background-color: #007BFF;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

button:focus {
    outline: none;
}


#summary {
    margin-top: 20px;
    padding: 10px;
    background-color: #e9ecef;
    border-radius: 8px;
    color: #555;
    font-size: 1rem;
    min-height: 50px;
    white-space: pre-wrap;
    word-wrap: break-word;
}




#error {
    color: beige
}