body{
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family:sans-serif;
    background-color:#222;
    background-image:url('https://source.unsplash.com/random/2000x1000?candy,sweet');
    font-size: 120%;
}
.card {
    background: rgba(255, 192, 203, 0.39);
    color: white;
    padding: 2em;
    border-radius: 30px;
    width: 100%;
    max-width: 420px; 
    margin: 1em;
}
.search {
    display: flex;
    align-items: center;
    justify-content: center;
}
button {
    margin: 0.5em;
    border-radius: 50%;
    border: none;
    height: 44px;
    width: 44px;
    outline: none;
    background: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
input.search-bar {
    border: none;
    outline: none;
    padding: 0.4em 1em;
    border-radius: 24px;
    background: white;
    color: black;
    font-family: inherit;
    font-size: 105%;
    width: calc(100% - 100px);
}
button:hover {
    background: #7c7c7c6b;
}
a.ingredientList {
    text-decoration: none;
    color: black;
    font-size: larger;
}
h4.ingredientList {
    cursor: pointer;
}
button.ingredientList {
    width: 25em;
    height: 2em;
    border-radius: 8px;
    background-color: rgba(7, 202, 7, 0.226);
    margin-left: 10%;
}
.description {
    pointer-events: none;
}
