body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
    margin: 0 200px; /* Space for ads on left and right */
    padding-top: 100px; /* Space for top ad */
    padding-bottom: 100px; /* Space for bottom ad */
}

.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

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

#text-display {
    font-size: 1.5em;
    margin: 20px 0;
    color: #333;
}

#user-input {
    width: 100%;
    height: 100px;
    font-size: 1em;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    resize: none;
}

#reset-button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1em;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#reset-button:hover {
    background-color: #218838;
}

#results {
    margin-top: 20px;
    font-size: 1.2em;
}