/* Set default styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

/* Set body background color */
body {
    background-color: #000; /* Black background */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center the image inside the container */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
    width: 100vw; /* Full viewport width */
}

/* Optional: Adjust the image size */
.container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Keep the image aspect ratio */
}
