body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #002740;
    font-family: sans-serif;
}

.image-container {
    max-width: 90%; /* Adjusts the container width on large screens */
    padding: 20px;
}

.responsive-image {
    max-width: 100%; /* Ensures the image doesn't exceed its container */
    height: auto;    /* Maintains the image's aspect ratio */
    display: block;  /* Removes extra space below the image */
    /*border: 3px solid #333;
    border-radius: 8px;*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}