.centered-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;    /* Centers vertically */
    height: 100vh;          /* Full viewport height to ensure vertical centering */
}

body {
    background-color: rgb(208, 208, 208);       
}

img {
    max-width: 400px; /* Ensures the image scales well on mobile devices */
    height: auto;    /* Maintains aspect ratio */
}