body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #74ebd5, #ACB6E5);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 400px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

h1 {
    margin-bottom: 15px;
}

textarea {
    width: 100%;
    height: 120px;
    /* margin-right: 15px; */
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: none;
    outline: none;
}

textarea:focus {
    border-color: #0078D4;
}

button {
    padding: 10px 20px;
    margin: 5px 2px;
    background: #0078D4;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #005fa3;
    transform: scale(1.05);
}

#result {
    margin-top: 15px;
    font-weight: bold;
    font-size: 18px;
}