* {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #010409;
}

html {
    scroll-behavior: smooth;
}


@media only screen and (max-width: 600px) {
/* maincontaint */

.main_doc {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.sidebar {
    position: sticky;
    top: 150px;
    width: 250px;
    background-color: #16171d;
    align-self: flex-start;
    font-family: "Inter", sans-serif;
    border-radius: 2px;
    border: 1px solid #f1f1f110;
    padding: 10px;
    display: unset;
    margin-bottom: 100px;
}

#banner_blog {
    width: 100%;
    height: 100%;
    background-color: transparent;
}

#banner_blog img {
    width: 100%;
    border-radius: 5px;
}

.post-detail {
    width: 100%;
}

#title {
    color: white;
    border-top: unset;
    font-size: 30px;
    font-weight: normal;
    line-height: 1.3;
    border-bottom: 1px solid #f1f1f110;
}
.post-detail span {
    color: blue;
    font-size: 20px;
    line-height: 2;
}
.doc-links {
    width: 90%;
    height: 100%;
    padding: 10px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #f1f1f110;
}

.inside_doc {
    width: 90%;
    max-width: 1800px;
    height: 100%;
    min-height: 60dvh;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
    padding: 10px;
    font-family: "Inter", sans-serif;
    margin-top: 150px;
    margin-bottom: 100px;
}

.inside-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inside-sidebar a {
    text-decoration: none;
    font-size: 25px;
}

.inside-sidebar h1 {
    color: white;
    font-weight: 500;
    font-size: 20px;
}

.sidebar-follow-links {
    background-color: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #010409;
    border-bottom: 5px solid rgb(14, 14, 14);
    border-radius: 3px;
    height: 40px;
}

.sidebar-follow-links a {
    color: white;
}
.inside_doc h1 {
    color: white;
    font-size: 21px;
    padding: 10px 0px;
    font-weight: 500;
    line-height: 1;
    border-top: 1px solid #f1f1f110;
}

.readme h1 {
    color: white;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.7;
}

.readme h2 {
    color: white;
    font-size: 23px;
    font-weight: normal;
    line-height: 1.7;
}

.readme h3 {
    color: white;
    font-size: 21px;
    font-weight: normal;
    line-height: 1.7;
}

.readme h4 {
    color: white;
    font-size: 19px;
    font-weight: normal;
    line-height: 1.7;
}

.readme h5 {
    color: white;
    font-size: 17px;
    font-weight: normal;
    line-height: 1.7;
}

.readme b {
    color: #367BF0;;
    font-weight: normal;
}

.readme p {
    color: white;
    font-size: 15px;
    line-height: 1.5;
    padding-bottom: 20px;
}

.readme a {
    color: blue;
    text-decoration: none;
}

.readme img {
    width: 100%;
    max-width: 600px;
    padding: 10px 0px;
    display: block;
    margin: 0 auto;
    position: center;
}

.readme {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: "Inter", sans-serif;
}

/* blogTD */

.readme table {
    table-layout: fixed;
    margin-top: 30px;
    border-collapse: collapse;
    width: 80%;
    margin-bottom: 20px;
    border: 1px solid #f1f1f110;
    align-self: center;
    display: block;
    overflow-x: auto;
}

.readme th {
    border: 1px solid #f1f1f110;
}
.readme td, th {
    padding: 38px;
    color: whitesmoke;
}

.readme tr:nth-child(even){background-color: #f1f1f110; color: white;}

.readme tr:hover {background-color: #dcdada10; color: white;}

.readme td {
    padding: 10px;
    border: 1px solid #f1f1f110;
}
.readme th {
    padding: 10px;
    padding-bottom: 10px;
    text-align: left;
    background-color: #f1f1f110;
    color: whitesmoke;
    font-weight: 500;
}

pre {
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: #19191950;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid rgba(87, 87, 87, 0.424);
    box-shadow: inset 0 0 15px rgba(117, 117, 117, 0.314);
    overflow-x: auto;
    max-height: 700px;
    color: white; 
}

.readme ul {
    padding-top: 10px;
    padding-bottom: 10px;
}
.readme li {
    color: white;
    margin-left: 30px;
    line-height: 1.5;
}
.readme li::marker {
    color: royalblue;
}

}

@media only screen and (min-width: 600px) {
/* maincontaint */

.main_doc {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.sidebar {
    position: sticky;
    top: 150px;
    width: 250px;
    background-color: #16171d;
    align-self: flex-start;
    font-family: "Inter", sans-serif;
    border-radius: 2px;
    border: 1px solid #f1f1f110;
    padding: 10px;
    display: unset;
    margin-bottom: 100px;
}

#banner_blog {
    width: 100%;
    height: 100%;
    background-color: transparent;
}

#banner_blog img {
    width: 100%;
    border-radius: 5px;
}

.post-detail {
    width: 100%;
}

#title {
    color: white;
    border-top: unset;
    font-size: 30px;
    font-weight: normal;
    line-height: 1.3;
    border-bottom: 1px solid #f1f1f110;
}
.post-detail span {
    color: blue;
    font-size: 20px;
    line-height: 2;
}
.doc-links {
    width: 90%;
    height: 100%;
    padding: 10px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #f1f1f110;
}

.inside_doc {
    width: 90%;
    max-width: 1800px;
    height: 100%;
    min-height: 60dvh;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
    padding: 10px;
    font-family: "Inter", sans-serif;
    margin-top: 150px;
    margin-bottom: 100px;
}

.inside-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inside-sidebar a {
    text-decoration: none;
    font-size: 25px;
}

.inside-sidebar h1 {
    color: white;
    font-weight: 500;
    font-size: 20px;
}

.sidebar-follow-links {
    background-color: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #010409;
    border-bottom: 5px solid rgb(14, 14, 14);
    border-radius: 3px;
    height: 40px;
}

.sidebar-follow-links a {
    color: white;
}
.inside_doc h1 {
    color: white;
    font-size: 21px;
    padding: 10px 0px;
    font-weight: 500;
    line-height: 1;
    border-top: 1px solid #f1f1f110;
}

.readme h1 {
    color: white;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.7;
}

.readme h2 {
    color: white;
    font-size: 23px;
    font-weight: normal;
    line-height: 1.7;
}

.readme h3 {
    color: white;
    font-size: 21px;
    font-weight: normal;
    line-height: 1.7;
}

.readme h4 {
    color: white;
    font-size: 19px;
    font-weight: normal;
    line-height: 1.7;
}

.readme h5 {
    color: white;
    font-size: 17px;
    font-weight: normal;
    line-height: 1.7;
}

.readme b {
    color: #367BF0;;
    font-weight: normal;
}

.readme p {
    color: white;
    font-size: 15px;
    line-height: 1.5;
    padding-bottom: 15px;
}

.readme a {
    color: blue;
    text-decoration: none;
}

.readme img {
    width: 100%;
    max-width: 600px;
    padding: 10px 0px;
    display: block;
    margin: 0 auto;
    position: center;
}

.readme {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: "Inter", sans-serif;
}

/* blogTD */

.readme table {
    table-layout: fixed;
    margin-top: 30px;
    border-collapse: collapse;
    width: 80%;
    margin-bottom: 20px;
    border: 1px solid #f1f1f110;
    align-self: center;
    display: block;
    overflow-x: auto;
}

.readme th {
    border: 1px solid #f1f1f110;
}
.readme td, th {
    padding: 38px;
    color: whitesmoke;
}

.readme tr:nth-child(even){background-color: #f1f1f110; color: white;}

.readme tr:hover {background-color: #dcdada10; color: white;}

.readme td {
    padding: 10px;
    border: 1px solid #f1f1f110;
}
.readme th {
    padding: 10px;
    padding-bottom: 10px;
    text-align: left;
    background-color: #f1f1f110;
    color: whitesmoke;
    font-weight: 500;
}

pre {
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: #19191950;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid rgba(87, 87, 87, 0.424);
    box-shadow: inset 0 0 15px rgba(117, 117, 117, 0.314);
    overflow-x: auto;
    max-height: 700px;
    color: white; 
}

.readme ul {
    padding-top: 20px;
    padding-bottom: 20px;
}
.readme li {
    color: white;
    margin-left: 30px;
    line-height: 1.5;
}
.readme li::marker {
    color: royalblue;
}

}

 @media only screen and (min-width: 992px) {
/* maincontaint */

.main_doc {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: unset;
}

.sidebar {
    position: sticky;
    top: 150px;
    width: 250px;
    background-color: #16171d;
    align-self: flex-start;
    font-family: "Inter", sans-serif;
    border-radius: 2px;
    border: 1px solid #f1f1f110;
    padding: 10px;
    display: unset;
    margin-bottom: none;
}

#banner_blog {
    width: 100%;
    height: 100%;
    background-color: transparent;
}

#banner_blog img {
    width: 100%;
    border-radius: 5px;
}

.post-detail {
    width: 100%;
}

#title {
    color: white;
    border-top: unset;
    font-size: 30px;
    font-weight: normal;
    line-height: 1.3;
    border-bottom: 1px solid #f1f1f110;
}
.post-detail span {
    color: blue;
    font-size: 20px;
    line-height: 2;
}
.doc-links {
    width: 90%;
    height: 100%;
    padding: 10px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #f1f1f110;
}

.inside_doc {
    width: 60%;
    max-width: 1800px;
    height: 100%;
    min-height: 60dvh;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
    padding: 10px;
    font-family: "Inter", sans-serif;
    margin-top: 150px;
    margin-bottom: 100px;
}

.inside-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inside-sidebar a {
    text-decoration: none;
    font-size: 25px;
}

.inside-sidebar h1 {
    color: white;
    font-weight: 500;
    font-size: 20px;
}

.sidebar-follow-links {
    background-color: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #010409;
    border-bottom: 5px solid rgb(14, 14, 14);
    border-radius: 3px;
    height: 40px;
}

.sidebar-follow-links a {
    color: white;
}
.inside_doc h1 {
    color: white;
    font-size: 21px;
    padding: 10px 0px;
    font-weight: 500;
    line-height: 1;
    border-top: 1px solid #f1f1f110;
}

.readme h1 {
    color: white;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.7;
}

.readme h2 {
    color: white;
    font-size: 23px;
    font-weight: normal;
    line-height: 1.7;
}

.readme h3 {
    color: white;
    font-size: 21px;
    font-weight: normal;
    line-height: 1.7;
}

.readme h4 {
    color: white;
    font-size: 19px;
    font-weight: normal;
    line-height: 1.7;
}

.readme h5 {
    color: white;
    font-size: 17px;
    font-weight: normal;
    line-height: 1.7;
}

.readme b {
    color: #367BF0;;
    font-weight: normal;
}

.readme p {
    color: white;
    font-size: 15px;
    line-height: 1.3;
}

.readme a {
    color: blue;
    text-decoration: none;
}

.readme img {
    width: 100%;
    max-width: 600px;
    padding: 10px 0px;
    display: block;
    margin: 0 auto;
    position: center;
}

.readme {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: "Inter", sans-serif;
}

/* blogTD */

.readme table {
    table-layout: fixed;
    margin-top: 30px;
    border-collapse: collapse;
    width: 80%;
    margin-bottom: 20px;
    border: 1px solid #f1f1f110;
    align-self: center;
    display: block;
    overflow-x: auto;
}

.readme th {
    border: 1px solid #f1f1f110;
}
.readme td, th {
    padding: 38px;
    color: whitesmoke;
}

.readme tr:nth-child(even){background-color: #f1f1f110; color: white;}

.readme tr:hover {background-color: #dcdada10; color: white;}

.readme td {
    padding: 10px;
    border: 1px solid #f1f1f110;
}
.readme th {
    padding: 10px;
    padding-bottom: 10px;
    text-align: left;
    background-color: #f1f1f110;
    color: whitesmoke;
    font-weight: 500;
}
}



@media only screen and (min-width: 1200px) {
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #010409;
}

/* maincontaint */

.main_doc {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.sidebar {
    position: sticky;
    top: 150px;
    width: 250px;
    background-color: #16171d;
    align-self: flex-start;
    font-family: "Inter", sans-serif;
    border-radius: 2px;
    border: 1px solid #f1f1f110;
    padding: 10px;
    display: unset;
}

#banner_blog {
    width: 100%;
    height: 100%;
    background-color: transparent;
}

#banner_blog img {
    width: 100%;
    border-radius: 5px;
}

.post-detail {
    width: 100%;
}

#title {
    color: white;
    border-top: unset;
    font-size: 35px;
    font-weight: normal;
    line-height: 1.3;
    border-bottom: 1px solid #f1f1f110;
}
.post-detail span {
    color: blue;
    font-size: 20px;
    line-height: 2;
}
.doc-links {
    width: 90%;
    height: 100%;
    padding: 10px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #f1f1f110;
}

.inside_doc {
    width: 45%;
    max-width: 1800px;
    height: 100%;
    min-height: 60dvh;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
    padding: 10px;
    font-family: "Inter", sans-serif;
    margin-top: 150px;
    margin-bottom: 100px;
}

.inside-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inside-sidebar a {
    text-decoration: none;
    font-size: 25px;
}

.inside-sidebar h1 {
    color: white;
    font-weight: 500;
    font-size: 20px;
}

.sidebar-follow-links {
    background-color: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #010409;
    border-bottom: 5px solid rgb(14, 14, 14);
    border-radius: 3px;
    height: 40px;
}

.sidebar-follow-links a {
    color: white;
}
.inside_doc h1 {
    color: white;
    font-size: 21px;
    padding: 10px 0px;
    font-weight: 500;
    line-height: 1;
    border-top: 1px solid #f1f1f110;
}

.readme ul {
    padding-top: 30px;
    padding-bottom: 30px;
}
.readme h1 {
    color: white;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.7;
    border-top: unset;
}

.readme h2 {
    color: white;
    font-size: 23px;
    font-weight: normal;
    line-height: 2.7;
}

.readme h3 {
    color: white;
    font-size: 21px;
    font-weight: normal;
    line-height: 1.7;
}

.readme h4 {
    color: white;
    font-size: 19px;
    font-weight: normal;
    line-height: 1.7;
}

.readme h5 {
    color: white;
    font-size: 17px;
    font-weight: normal;
    line-height: 1.7;
}

.readme b {
    color: #367BF0;;
    font-weight: normal;
}

.readme p {
    color: white;
    font-size: 15px;
    line-height: 1.5;
    padding-bottom: 15px;
}

.readme a {
    color: blue;
    text-decoration: none;
    font-weight: normal;
}

.readme img {
    width: 100%;
    max-width: 600px;
    padding: 10px 0px;
    display: block;
    margin: 0 auto;
    position: center;
}

.readme {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: "Inter", sans-serif;
}

/* blogTD */

.readme table {
    table-layout: fixed;
    margin-top: 30px;
    border-collapse: collapse;
    width: 80%;
    margin-bottom: 20px;
    border: 1px solid #f1f1f110;
    align-self: center;
    display: unset;
    overflow-x: unset;
}

.readme th {
    border: 1px solid #f1f1f110;
}
.readme td, th {
    padding: 38px;
    color: whitesmoke;
}

.readme tr:nth-child(even){background-color: #f1f1f110; color: white;}

.readme tr:hover {background-color: #dcdada10; color: white;}

.readme td {
    padding: 10px;
    border: 1px solid #f1f1f110;
}
.readme th {
    padding: 10px;
    padding-bottom: 10px;
    text-align: left;
    background-color: #f1f1f110;
    color: whitesmoke;
    font-weight: 500;
}

.readme li {
    color: white;
    margin-left: 30px;
    line-height: 1.5;
}
.readme li::marker {
    color: royalblue;
}
}