/* Apply white background color to the whole body */
body {
    margin: 0;
    padding: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full height of the viewport */
    font-family: Arial, sans-serif;
}

/* Style for the container to ensure it centers the image */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Style for the image */
.centered-image {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}