body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
}

h1 {
    margin-bottom: 10px;
}

p {
    margin: 20px auto;
    width: fit-content;
    text-align: center;
}

img {
    height: 200px;
    width: auto;
}

input[type="text"] {
    width: 70%;
    padding: 10px;
    font-size: 1em;
    box-sizing: border-box;
    margin-bottom: 10px;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
}

#output {
    text-align: left;
}

@media screen and (max-width: 1024px) {
    body {
        height: auto;
    }
    .container {
        width: 80%;
        max-width: 600px;
    }

    img {
        height: auto;
        max-width: 100%;
    }

    input[type="text"] {
        width: 80%;
    }

    button {
        width: auto;
    }
}

@media screen and (max-width: 600px) {
    body {
        height: auto;
        margin: 20px;
    }

    .container {
        width: 90%;
    }

    img {
        height: auto;
        max-width: 100%;
    }

    input[type="text"] {
        width: 90%;
    }
}
