body {
    margin: 0;
    padding: 40px;
    background: #f4f4f4;
    font-family: sans-serif;

    display: flex;
    justify-content: center;
}

.translator {
    width: 900px;
    text-align: center;
}

h2 {
    margin-bottom: 25px;
}

textarea {
    width: 100%;
    min-height: 260px;
    resize: horizontal;

    padding: 15px;
    font-size: 18px;
    font-family: inherit;

    box-sizing: border-box;
    border: 1px solid #bbb;
    border-radius: 8px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

button {
    padding: 12px 22px;
    font-size: 16px;

    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}