body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4; /* Optional background color */
}

.centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    max-width: 90%; /* Reduced to 90% to give some margin on smaller devices */
    height: auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Optional shadow for aesthetics */
}

/* Media query for smaller devices */
@media (max-width: 600px) {
    img {
        max-width: 100%;
    }
}
