body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* soft background color */
}

.container {
    display: flex;
    justify-content: space-around;
    width: 200px; /* adjust width as needed */
}

.input-box {
    width: 40px; /* adjust width as needed */
    height: 40px; /* adjust height as needed */
    text-align: center;
    font-size: 20px;
    border: 1px solid #ddd; /* subtle border */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* subtle shadow */
}

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.image-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%; /* Full width of the container */
    height: 50vh; /* Height set to 50% of the viewport */
}

.image-container img {
    height: 100%; /* Each image fills the height of the container */
    width: auto; /* Maintain aspect ratio */
    border: 2px solid #000; /* Black outline */
    border-radius: 15px; /* Rounded edges */
}