body {
    font-family: Times New Roman, serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: white;
}

.container {
    text-align: center;
    background-color: white;
    padding: 1rem;
    max-width: 400px;
    border: 1px solid black;
}

label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

input {
    width: 90%;
    padding: 0.2rem;
    margin-bottom: 0.7rem;
    border: 1px solid black;
}

button {
    background-color: #d3d3d3;
    color: black;
    border: 2px outset #d3d3d3;
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 0.7rem;
}

button:active {
    border-style: inset;
}

.image-container {
    margin-top: 0.7rem;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 300px;
    max-height: 300px;
}