body {
    background-color: yellow;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.container {
    background-color: rgb(229, 114, 14);
    padding: 25px;
    border-radius: 8px;
    height: 300px;
    width: 300px;
    text-align: center;
}

input, button {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
}

button {
    background-color: #cbe80a;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color:rgb(199, 110, 10);
}

#result {
    margin-top: 15px;
    font-weight: bold;
}
