body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0; /* Light gray background */
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.centered-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures the image scales properly */
}