/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full viewport height container */
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Container to center the image */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* Optional background color */
}

/* Centered image styling */
.centered-image {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .centered-image {
        max-width: 100vw;
        max-height: 100vh;
    }
}