/* Remove default browser margins */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #000000; /* Set background to black */
}

.container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
    height: 100vh;           /* Sets height to 100% of the viewport height */
}

img {
    max-width: 90%;          /* Prevents the image from overflowing on mobile */
    height: auto;            /* Maintains aspect ratio */
}
