.search {
    width: 80%;
    height: 70px;
    background-color: #4b4b4b33;
    box-sizing: border-box;
    margin-top: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 15px;
}

.searchInput {
    height: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    outline: none;
    padding-left: 10px;
    flex: 1;
    font-size: 18px;
}

#noResults {
    display: none;
    text-align: center;
    margin-top: 2rem;
    font-size: 1.5rem;
    color: rgb(255, 70, 70);
}

