body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #36393f;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.avatar img {
    width: 100%;
    height: 100%;
}

.user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 24px;
    margin: 0;
}

p {
    font-size: 16px;
    margin: 0;
}

.bio {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.bio p {
    line-height: 1.5;
}
