*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
html, body{
    width: 100%;
    height: 250vh;
    font-family: 'Poppins', sans-serif;

}
.main{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #71b7e6, #9b59b6);
}

.search{
    position: relative;
    width: 350px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.search input{
    width: 100%;
    height: 100%;
    padding: 0 20px;
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 25px;
}
.search button{
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background: #3498db;
    border: none;
    outline: none;
    border-radius: 0 25px 25px 0;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    
}

.search ::placeholder{
    color: #999;
    font-size: 1.1vw;
}

.search button:hover{
    background: #2980b9;
}

.search button:active{
    background: #1c5980;
}

.peoples{
    position: absolute;
    top: 520px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 10px;
    bottom: 160px;
}
.peoples .people{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    font-size: 18px;
    color: #333;
}

.people h3{
    font-size: 1rem;
    color: #333;
    margin-top: 5px;
}
.peoples img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}