/* Center the image container */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* This will center the image both vertically and horizontally */
}

/* Optional: Add some additional styles to the image */
.image-container img {
    max-width: 100%;
    max-height: 100%;
}

body {
    font-family: "Helvetica", "Arial", sans-serif;
}
