/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set body to cover the whole screen with black background */
body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Center the image */
.centered-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.centered-image-container img {
    max-width: 100%;
    max-height: 100%;
}
