*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #1a212d;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    padding: 30px 22px;
    width: 42rem;
}

.container h1{
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}

.search-box{
    background-color: #161922;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #999;
    border-radius: 6px;
}

.search-box input{
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    outline: none;
    width: 80%;
}

.search-box button{
    background-color: #675afe;
    padding: 5px 10px;
    border: none;
    color: #fff;
    border-radius: 6px;
    outline: none;
    /* font-size: 15px; */
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover{
    background-color: #5f4c8c;
} 

.image{
    width: 250px;
    height: 260px;
    margin-left: 10px;
}
.profile{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 10px;
    color: #5f4c8c;
    background-color: #161922;
    border-radius: 6px;
}
.stats-name{
    display: flex;
    gap: 10px;
}
.profile-details{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    gap: 10px;
}
.stats{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.media{
    display: flex;
    flex-direction: column;
    gap: 10px;
}