/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

.image-container {
    text-align: center;
    margin-top: 30px; /* Added top margin */
}

.image-container img {
    max-width: calc(100% - 60px); /* Adjusted for margin */
    max-height: calc(100% - 60px); /* Adjusted for margin */
    object-fit: contain; /* Ensures the image maintains aspect ratio */
    margin: 35px; /* Margin around the image */
}
