@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}

body {
    background-color: #1a212d;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 42rem;
    padding: 30px 22px;
}

.container h1 {
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}

.searchBox {
    background-color: #161922;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #999;
    border-radius: 6px;
}

.searchBox input {
    background-color: transparent;
    outline: none;
    border: none;
    width: 80%;
    color: #fff;
    font-size: 15px;
}

.searchBox button {
    background-color: #675afe;
    color: #fff;
    padding: 5px 10px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 6px;
    transition: 300ms all ease;
}

.searchBox button:hover {
    background-color: #3a28fa;
}

.details {
    margin-top: 20px;
    background-color: #161922;
    padding: 20px 25px;
    border: 1px solid #999;
    border-radius: 6px;
    display: none;
}

.profile {
    display: flex;
}

.profile-image {
    height: 100px;
    width: 100px;
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
}

.profile-details {
    padding: 10px;
    width: 25rem;
}

.username {
    font-size: 13px;
    color: #675afe;
}

.bio {
    font-size: 14px;
    margin-top: 10px;
}

.stats {
    background-color: #20232c;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #999;
    border-radius: 6px;
}

.media {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.media p {
    width: 50%;
    display: flex;
    align-items: center;
    font-size: 13px;
}