section {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.what-user-searched {
    margin: 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #eee;
}

.what-user-searched img {
    width: 30px;
    padding: 2px;
}

.what-user-searched h1 {
   font-size: 18px;
   font-weight: 400;
   max-width: 100%;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

@media (min-width: 680px) and (max-width: 1199px) {
    .what-user-searched {
        width: 80%;
        align-self: center;
    }
}
   

@media (min-width: 1200px) {
    .what-user-searched {
        width: 60%;
        align-self: center;
    }
}
