body {
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

h1 {
    margin-bottom: 20px;
}

.container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box h2 {
    margin-bottom: 10px;
}

textarea {
    width: 250px;
    height: 150px;
    padding: 10px;
    font-size: 1rem;
    resize: none;
}

.arrow {
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
}

.arrow:hover {
    color: #555;
}