@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins" , sans-serif;
}
html,
body {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    background-color: #f5f5f5;
}
header {
    background-color: #24292F;
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
}
h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    display: flex;
}
section {
    display: flex;
    justify-content: center;
    padding: 50px;
    gap: 8px;
}
/* .search-area {
    display: flex;
    justify-content: center;
    padding: 50px;
    gap: 8px;
} */
#user-search {
    width: 45%;
    border: none;
    border-left: 1px solid #c4c4c4;
    border-right: 1px solid #c4c4c4;
    border-radius: 4px;
    padding: 10px;
    outline: none;
    font-size: 16px;
}
#btn {
    padding: 10px 30px;
    border-radius: 6px;
    border: none;
    outline: none;
    background-color: #2DA44E;
    color: #f5f5f5;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    &:hover {
        background-color: #279643;
    }
}
.card {
    /* max-width: 500px; */
    display: flex;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    border: 0.5px solid #c4c4c4;
    padding: 40px;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
}
.card-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}
.profile-info {
    text-align: center;
    line-height: 2;
}
.title {
    font-size: 24px;
    font-weight: 500;
}
.user-name {
    font-size: 16px;
    font-weight: 400;
    color: #7a7878;
}
.bio {
    font-size: 14px;
    font-weight: 400;
    /* color: #7a7878; */
}
#profile-link {
    text-decoration: none;
    padding: 10px 30px;
    background-color: #2DA44E;
    color: #f5f5f5;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); */
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;    
    text-transform: uppercase;
}
.follow-box {
    display: flex;
    gap: 10px;
    align-items: center;
}


