body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    min-height: 100vh;
}

.image-container {
    flex: 1;
    margin: 10px;
    max-width: 100%;
    position: relative; /* For positioning the overlay */
}

.image-container img {
    max-width: 100%;
    max-height: 30vh;
    height: auto;
    object-fit: contain;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5); /* White color with 50% transparency */
    font-size: 10vw;
    pointer-events: none;
}


.oldoverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10vw; /* Responsive font size */
    pointer-events: none; /* Allows clicking through the overlay */
}
