body {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    /* height: 100vh; */
    /* Full viewport height */
    margin: 0;
    background-color: #f0f0f0;
    /* Optional background color */
}

.content {
    width: 60%;
    /* Adjust width to control pillarbox size */
    min-width: 300px;
    /* Ensure readability on small screens */
    text-align: center;
    background: white;
    /* Optional: add a background */
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    border-radius: 10px;
}