body {
    background-color:#1D2E28;
    margin: 0; /* Remove default body margins */
    height: 100vh; /* Set the body height to the full viewport height */
    display: flex;
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content */
}

.center-container {
    /* Optional: Add a border to see the container's boundaries */
    /* border: 1px solid black; */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    /* Optional: Set max width for responsiveness */
    max-width: 100%;
    max-height: 100%;
    /* Optional: Add a width if needed, e.g., width: 50%; */
}
