body {
    background-image: url("bgGray2.png");
}

.api{
    display: flex;
    justify-content: center; /* Horizontally center the container */
    align-items: center; /* Vertically center the container */
    min-height: 100vh; /* Ensure the body takes full viewport height */
    margin: 0;
    background-color: #f0f0f0;
    font-family: sans-serif;
}

.container {
    display: flex; /* Use flexbox for the container to arrange text boxes */
    gap: 20px; /* Space between the two text boxes */
    flex-wrap: wrap; /* Allow text boxes to wrap if needed */
    justify-content: center; /* Center the text boxes within the container */
}

.text-box {
    background-color: #d3d3d3;
    border: 1px solid #ccc;
    border-radius: 15px; /* Adjust this value for more or less rounded corners */
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px; /* Limit the width of each text box */
}

.text-box p {
    margin: 0;
    color: #333;
    line-height: 1.5;
}
