@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f2f2f3;
}

.searchbar {
    position: relative;
    width: 500px;
}
input {
    position: absolute;
    height: 60px;
    width: 100%;
    border-radius: 30px;
    padding: 20px 30px;
    border:none;
    background-color: #ccc;
}
button {
    position: absolute;
    top: 1px;
    left: 82%;
    cursor: pointer;
    color: #000000;
    border: none;
    background: #5b5b5b;
    color: #fff;
    height: 58px;
    border-radius: 30px;
    width: 89px;
}
#answer{
    width: 50%;
    height: 50%;
    text-align: center;
    margin: 60px auto;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 30px;
    background: #5b5b5b;
    color: #fff;
}