* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0c0c0c;
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Media query for tablet and mobile screens */
@media (max-width: 768px) {
    body {
        align-items: flex-start; /* Align the image to the top on smaller screens */
        padding-top: 100px;
    }
}
