body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 20px;
    background-color: beige;
}

#result {
    font-weight: bold;
    margin-top: 25px;
    background-color: green;
    color: white;
    height: 30%;
}
.container{
    display: block;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
}
img{
    width: 15%;
    height: auto;
}
.container img{
    display: flex;
    justify-content: center;
    padding-left: 43%;
}
input{
    height: 30px;
    width: 143px;
    background-color: black;
    text-align: center;
    color: white;
}
button{
    padding: 10px;
    background-color: aquamarine;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover{
    background-color:aqua;
}