@charset "utf-8";
/* CSS Document */

body {
    border: 5px solid green;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

table {
    width: 300px;
    height: 700px;
    border: 3px solid red;
    text-align: center;
}

@media screen and (min-width: 768px) {  /* Change XXXpx to your desired value */
    table {
        width: 400px; /* Example: Adjust width for larger screens */
    }
}
