*{
    margin: 0;
    padding: 0;
    background-color: rgb(51, 51, 51);
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 10px;
}

.input {
    width: 225px;
    height: 30px;
    color: rgb(0, 0, 0);
    background-color: white;
    outline: none;
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
input {
    color: rgb(0, 0, 0);
    background-color: white;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input i {
    background-color: white;
    color: rgb(44, 44, 44);
}

button{
    background-color: white;
    color: black;
    height: 35px;
    width: 100px;
    border: 2px solid black;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
}

#result{
    color: white;
    font-size: 20px;
}