body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #222;
    font-family: 'Open Sans', sans-serif;
    background-image: url("https://source.unsplash.com/1600x900/?landscape");
}
.card {
    background: #1c1c1cc7;
    color: white;
    padding: 2em;
    border-radius: 30px;
    width: 100%;
    max-width: 320px;
    margin: 1em;
}
.search {
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-bar {
    border: none;
    border-radius: 20px;
    outline: none;
    padding: 0.3em 1em;
    font-size: 120%;
    font-family: 'Open Sans', sans-serif;

}
.flex {
    display: flex;
    height: 40px;
    justify-content: flex-start;
    align-items: center;
}
button {
    margin: 1.5em;
    border-radius: 50%;
    width: 45px;
    border: none;
    height: 3em;
    outline: none;
    cursor: pointer;
}
button:hover{
    background-color: rgb(246, 250, 15);
}
div#description {
    text-transform: capitalize;
}