body {
    margin: 0;
    font-family: sans-serif;
    background: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.inputStyle {
    display: flex;
    gap: 1vw;
    margin-bottom: 3vh;
}

input {
    padding: 0.5vh 1vw;
    border: 0.1vh solid #ccc;
    border-radius: 0.5vh;
    width: 50vw;
    font-size: 2vh;
}

button {
    padding: 0.5vh 2vw;
    background-color: orange;
    border: none;
    color: white;
    border-radius: 0.5vh;
    cursor: pointer;
    font-size: 2vh;
}

.outputStyle {
    width: 57vw;
    max-height: 40vh;
    overflow-y: auto;
    background: #eee;
    padding: 2vh 2vw;
    border-radius: 0.5vh;
    border: 0.1vh solid #ccc;
    font-size: 2vh;
}