* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff;
    font-family: "Inter", sans-serif;
    color: white;
    flex-direction: column;
    justify-content: center;
}

.left_sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #fff;
    padding: 15px;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.left_sidebar span {
    color: black;
    font-weight: 600;
    font-size: 2.0em;
}

.left_sidebar li,
.left_sidebar li::marker {
    list-style: upper-roman;
    padding-top: 10px;
    padding-bottom: 0;
    margin-left: 20px;
    color: #15151580;
}

.right_sidebar img {
    width: 200px;
    max-width: 100%;
    max-width: fit-content;
    margin-bottom: -50px;
    background-color: transparent;
    pointer-events: none;
}

.right_sidebar span {
    color: rgba(0, 0, 0, 0.705);
    font-weight: normal;
    font-style: italic;
    font-size: 0.6em;
}

.left_sidebar ul {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
}
.left_sidebar a {
    color: #15151580;
    text-decoration: none;
}

.right_sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100dvh;
    background-color: #fff;
    padding: 10px;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.links_right {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

.links_right a {
    width: fit-content;
    padding: 10px;
    margin-top: 10px;
    text-decoration: none;
    color: red;
    border: 1px solid transparent;
    transition: all ease 360ms;
    font-weight: 400;
    padding-left: 0;
}

.links_right a:hover {
    background-color: transparent;
    transition: all ease 360ms;
    border: 1px solid red;
    border-style: dotted;
    color: red;
}
.main_containt {
    margin-left: 200px;
    margin-right: 200px;
    height: 100dvh;
    overflow-y: auto;
    background-color: #fff;
    color: #151515;
    padding: 150px;
}


.main_containt h2 {
    padding-top: 10px;
    padding-bottom: 30px;
    font-size: 1.7em;
}

.main_containt h3 {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.5em;
}
.main_containt h1 {
    border-bottom: 1px solid rgba(0, 0, 0, 0.438);
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-left: 5px solid red;
    font-size: 2.5em;
    padding-left: 10px;
}


.main_containt img {
    width: 80%;
}
.main_containt p {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.0em;
    line-height: 25px;
    font-weight: normal;
    padding-left: 10px;
    font-family: "Poppins", sans-serif;}


blockquote p {
    border-left: 2px solid red;
    font-style: italic;
    margin-top: 25px;
    margin-bottom: 25px;
    padding-left: 5px;
    margin-left: 10px;
    color: #15151594;
}


pre {
    background-color: #f2f2f2;
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 5px;
    color: gray;
    box-shadow: inset 0 0 10px;
}


.navlogo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 0.7em;
}

.navlogo h1 {
    font-weight: normal;
}

header {
    display: block;
    padding: 10px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    z-index: 9999;
    position: fixed;
    background-color: #110e0e;
    justify-content: space-evenly;
}

.navlist {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    margin: auto;
    background-color: transparent;
}

.navlist img {
    width: 50px;
    background-color: transparent;
    display: block;
    align-items: flex-start;
    align-items: flex-start;
}

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

.flex li {
    list-style-type: none;
    text-decoration: none;
}

.flex a {
    color: white;
    font-weight: normal;
    transition: all ease 400ms;
    text-decoration: none;
}

.flex a:hover {
    color: red;
    transition: all ease 400ms;
}

.flex i {
    font-weight: normal;
    font-size: 1.3em;
}

/* footer */
footer {
    box-shadow: inset 0px 5px 10px #0000006b;
    width: 100%;
    height: 100%;
    min-height: 20dvh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    z-index: 999;
    position: fixed;
}

#inside_footer {
    display: flex;
    gap: 30px;
}

#logo img {
    background-color: transparent;
    margin-bottom: -50px;
    pointer-events: none;
    width: 250px;
}
#logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

#logo h1 {
    font-weight: normal;
    color: black;
    font-size: 0.7rem;
}

#links {
    margin-top: 50px;
    display: flex;
    list-style: none;
    font-family: "Inter", sans-serif;
    gap: 30px;
}

#links li {
    list-style: none;
    padding-top: 10px;
    text-decoration: none;
}

#links h1 {
    color: red;
    font-size: 2.0em;
}
#links a {
    text-decoration: none;
    color: black;
}

#links a:hover {
    color: darkslategray;
}

.main_containt blockquote ul {
    padding-left: 30px;
}

.main_containt blockquote li {
    padding-top: 5px;
    padding-bottom: 5px;
}
.main_containt li::marker {
    color: darkgray;
}

.main_containt li a {
    font-weight: bolder;
    text-decoration: none;
    color: black;
    font-style: italic;
}

.last_update {
    margin-top: 10px;
    border-top: 1px solid red;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    padding-top: 30px;
    align-items: flex-start;
    background-color: transparent;
}

.last_update h1 {
    border: none;
    text-align: left;
    font-size: 0.8em;
    letter-spacing: -1px;
    font-weight: normal;
    color: blue;
}