body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: white;
}

.border-container {
    width: 100%;
    height: 100%;
    border: 2cm solid lightgrey;
    box-sizing: border-box; /* Ensure the border is included in the width and height */
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-container {
    text-align: center;
    position: relative;
    top: 33.33%;
    transform: translateY(-50%);
    width: 80%;
    max-width: 400px; /* Optional: Set a maximum width to prevent excessive stretching */
}

textarea {
    width: 100%;
    margin-top: 10px;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
}

#response {
    margin-top: 20px;
    font-size: 14px;
}
