body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column; /* Align items in a column */
    align-items: center;
    justify-content: center;
    background-color: #061126;
}

.header {
    margin-bottom: 20px; /* Add space between header and container */
}

table {
    width: 100%; /* Take full width of the container */
}

img {
    display: block; /* Ensure the image is block-level */
    margin-right: 10px; /* Add space between image and text */
}

.text {
	text-align: center;
	margin: 12px 0; /* Add margin between each text line */
    font-size: 18px; /* Adjust the font size of the text */
    color: rgb(254, 194, 102); /* Text color */
}

.container {
    width: 75%; /* Adjust width as per your preference */
    height: 50%; /* Adjust height as per your preference */
    border-radius: 20px; /* Rounded edges */
    overflow: hidden;
    box-shadow: 0 0 20px rgb(251,211,133); /* Optional: Add shadow effect */
}

canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.top-table {
    margin-top: 20px; /* Adjust the margin as needed */
}

.copyright {
    margin-top: 20px; /* Adjust the margin as needed */
}