body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #212121;
}

.header-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

header {
    padding: 25px 0;
    /* background-color: #212121; */
    margin-bottom: 0;
}

.header {
    display: flex;
    justify-content: space-between;
}

.header-name {
    display: flex;
    gap: 5px;
    align-items: center;
}

.gpt {
    font-weight: 600;
    font-size: 18px;
}

.header-left {
    display: flex;
    gap: 14px;
    align-items: center;
}

.header svg {
    width: 22px;
    height: 22px;
    fill: #F5F5F5;
}

.header p {
    color: white;
}

.header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-right img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}


.main-body {
    padding: 0 20px;
    margin: auto;
    width: 800px;
}

.main-title {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 40px 0;
}

.main-desc {
    color: white;
    background-color: #303030;
    padding: 10px 20px;
    border-radius: 50px;
}

.main-bio {
    text-align: left;
    color: white;
}

.main-code {
    background-color: #171717;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 35px;
}

.main-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: white;
    margin-bottom: 20px;
}

.main-details--right {
    display: flex;
    gap: 20px;
}

.copy {
    display: flex;
    align-items: center;
    gap: 5px;
}

.edit {
    display: flex;
    align-items: center;
    gap: 5px;
}

pre {
    width: 800px;
    height: 950px;
    font-size: 15px;
    color: #fff;
    text-align: left;
    margin: 0 -90px;
}

.grey{
    color: #A2A2A2;
}

.blue{
    color: #2E95D3;
}

.pink{
    color: #DF3079;
}

.green{
    color: #00A67D;
}

.orange{
    color: #E9950C;
}

.main-docs{
    color: white;
}

.main-list li{
    margin-bottom: 15px;
}

.bg-color{
    background-color: #424242;
    padding: 5px 7px;
    border-radius: 10px;
}

.main-icons{
    display: flex;
    gap: 10px;
    margin-bottom: 60px;
}

.main-icons-detail{
    display: flex;
    gap: 2px;

}