@import url('https://fonts.googleapis.com/css?family=Fira+Code:300,400,500,600,700&display=swap'); 
* { 
    box-sizing: inherit;
} 

html { 
    box-sizing: border-box;
} 

body { 
    margin: 0; 
    padding: 0; 
    font-family: 'Fira Code', Monaco, Consolas, Ubuntu Mono, monospace; 
    font-size: 1rem; 
    line-height: 1.54; 
    letter-spacing: -0.02em; 
    background-color: #1f222a; 
    color: white; 
    text-rendering: optimizeLegibility; 
    -webkit-font-smoothing: antialiased; 
    font-feature-settings: "liga", "tnum", "zero", "ss01", "locl"; 
    font-variant-ligatures: contextual; 
    -webkit-overflow-scrolling: touch; 
    -webkit-text-size-adjust: 100%;
} 

*,:before,:after { 
    box-sizing: inherit;
} 

.container { 
    display: flex; 
    flex-direction: column; 
    padding: 40px; 
    max-width: 864px; 
    min-height: 100vh; 
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%; /* Ensures the container spans the full width of its parent */
   
    text-align: center; /
} 

.container.center { 
    border: none; 
    margin: 0 auto;
} 

.header { 
    display: flex; 
    flex-direction: column; 
    position: relative;
} 

.content { 
    display: flex; 
    flex-direction: column;
} 

.footer { 
    padding: 40px 0; 
    flex-grow: 0; 
    opacity: .5;
} 

a { 
    color: inherit;
} 

hr { 
    width: 100%; 
    border: none; 
    background: rgba(255, 255, 255, 0.1); 
    height: 1px;
} 

.header__inner { 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
} 

.navigation-menu { 
    display: flex; 
    align-items: flex-start; 
    justify-content: space-between; 
    margin: 20px 1px;
} 

.post { 
    width: 100%; 
    text-align: left; 
    margin: 20px auto; 
    padding: 20px 0;
} 

.footer__inner { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    margin: 0; 
    width: 760px; 
    max-width: 100%;
} 

button { 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 8px 18px; 
    margin: 5px 0; 
    text-decoration: none; 
    text-align: center; 
    border-radius: 8; 
    border: 1px solid #78E2A0; 
    background: #78E2A0; 
    color: #1f222a; 
    font: inherit; 
    font-weight: bold; 
    appearance: none; 
    cursor: pointer; 
    outline: none;
} 

button:hover { 
    background: rgba(120, 226, 160, 0.9);
} 

.header__logo { 
    display: flex; 
    flex: 1;
} 

.header__logo:after { 
    content: ''; 
    background: repeating-linear-gradient(90deg, #78E2A0, #78E2A0 2px, transparent 0, transparent 10px); 
    display: block; 
    width: 100%; 
    right: 10px;
} 

ul { 
    margin-left: 22px; 
    padding: 0;
} 

.menu { 
    display: flex; 
    flex-direction: column; 
    position: relative; 
    list-style: none; 
    padding: 0; 
    margin: 0;
} 

.navigation-menu__inner { 
    display: flex; 
    flex: 1; 
    flex-wrap: wrap; 
    list-style: none; 
    margin: 0; 
    padding: 0;
} 

.post-title { 
    position: relative; 
    color: #78E2A0; 
    margin: 0 0 15px; 
    padding-bottom: 15px; 
    border-bottom: 3px dotted #78E2A0;
} 

.headings--one-size h1  { 
    line-height: 1.3;
} 

.headings--one-size h1  { 
    font-size: 2.0rem;
} 

.headings--one-size h1:not(first-child)  { 
    margin-top: 40px;
} 

.post-title:after { 
    content: ''; 
    position: absolute; 
    bottom: 2px; 
    display: block; 
    width: 100%; 
    border-bottom: 3px dotted #78E2A0;
} 

.post-meta { 
    font-size: 1rem; 
    margin-bottom: 10px; 
    color: rgba(120, 226, 160, 0.7);
} 

.post-content { 
    margin-top: 30px;
} 

.footer .copyright  { 
    display: flex; 
    flex-flow: row wrap; 
    flex: 1; 
    align-items: center; 
    font-size: 1rem; 
    justify-content: center;
} 

.code-container {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    display:block; /* Initially hide the code snippet */
   overflow: auto; 
}

.image-description {
    color: #fff; /* Sets the text color; choose one that matches your design */
    background: rgba(0, 0, 0, 0.7); /* Optional: a semi-transparent background for readability */
    display: inline-block; /* Makes the description a block-level element inline */
    margin-top: 10px; /* Adds space between the image and the description */
    padding: 5px 10px; /* Padding inside the background */
    border-radius: 5px; /* Optional: rounds the corners of the background */
  }

img {
    width: calc(100% + 25vw); /* Image width is the full width of the container plus additional viewport width */
    max-width: none; /* Ensures the max-width does not restrict the image size */
    height: auto; /* Maintains the aspect ratio of the image */
    position: relative; /* Allows positioning relative to the container */
    left: calc(-10vw); /* Shifts the image to the left by 25% of the viewport width to center it */
    display: block; /* Ensures the image is a block-level element, required for margins to work */
    margin: 0 auto; /* Centers the image within the container */
  }

.header__logo a  { 
    flex: 0 0 auto; 
    max-width: 100%; 
    text-decoration: none;
} 

ul li  { 
    position: relative;
} 

.menu__trigger { 
    margin-right: 0 !important; 
    color: #78E2A0; 
    user-select: none; 
    cursor: pointer;
} 

.menu--mobile li  { 
    flex: 0 0 auto;
} 

.menu--mobile .menu__trigger  { 
    color: #78E2A0; 
    border: 2px solid; 
    margin-left: 10px; 
    height: 100%; 
    padding: 3px 8px; 
    margin-bottom: 0 !important; 
    position: relative; 
    cursor: pointer; 
    display: none;
} 

.menu--mobile li:not(:last-of-type)  { 
    margin-bottom: 10px;
} 

.navigation-menu__inner > li  { 
    flex: 0 0 auto; 
    margin-bottom: 10px; 
    white-space: nowrap;
} 

.navigation-menu__inner > li:not(:last-of-type)  { 
    margin-right: 20px;
} 

.post-title a  { 
    text-decoration: none;
} 


h1:hover a  { 
    visibility: visible;
} 

.post-meta > :not(:first-child)::before { 
    content: "::"; 
    display: inline-block; 
    margin: 0 8px;
} 

.footer .copyright span  { 
    white-space: nowrap;
} 

.footer .copyright > :first-child:not(:only-child)  { 
    margin-right: 10px;
} 

.logo { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    background: #78E2A0; 
    color: black; 
    padding: 5px 10px;
} 

.menu__dropdown { 
    display: none; 
    flex-direction: column; 
    position: absolute; 
    background: #1f222a; 
    box-shadow: 0 10px rgba(31, 34, 42, 0.8), -10px 10px rgba(31, 34, 42, 0.8), 10px 10px rgba(31, 34, 42, 0.8); 
    color: white; 
    border: 2px solid; 
    margin: 0; 
    padding: 10px; 
    top: 10px; 
    left: 0; 
    list-style: none; 
    z-index: 99;
} 

p { 
    margin-bottom: 20px;
} 

.headings--one-size h2  { 
    line-height: 1.3;
} 

.headings--one-size h2  { 
    font-size: 1.7rem;
} 

.headings--one-size h2:not(first-child)  { 
    margin-top: 40px;
} 

ol { 
    margin-left: 22px; 
    padding: 0;
} 

ol { 
    list-style: none; 
    counter-reset: li;
} 

.post ul  { 
    list-style: none;
} 

.footer a  { 
    color: inherit;
} 

.menu__dropdown > li  { 
    flex: 0 0 auto;
} 

.menu__dropdown > li:not(:last-of-type)  { 
    margin-bottom: 10px;
} 

.hanchor { 
    color: rgba(120, 226, 160, 0.9); 
    text-decoration: none; 
    margin-left: 10px; 
    visibility: hidden;
} 

 h2:hover a { 
    visibility: visible;
} 

code { 
    font-family: 'Fira Code', Monaco, Consolas, Ubuntu Mono, monospace !important; 
    font-feature-settings: normal; 
    color: #78E2A0; 
    font-size: .95rem;
} 



ol li  { 
    position: relative;
} 

ol > li  { 
    counter-increment: li;
} 

ol > li::before { 
    content: counter(li); 
    position: absolute; 
    right: calc(100% + 10px); 
    color: #78E2A0; 
    display: inline-block; 
    text-align: right;
} 

h1:hover a, h2:hover a, h3:hover a, h4:hover a { 
    visibility: visible;
} 

.post ul li:not(:empty)::before { 
    content: '-'; 
    position: absolute; 
    left: -20px; 
    color: #78E2A0;
} 

.menu__dropdown > li a  { 
    display: flex; 
    padding: 5px;
} 


/* These were inline style tags. Uses id+class to override almost everything */
#style-esmQ3.style-esmQ3 {  
   top: 167px;  
    left: 537px;  
    height: 0px;  
    width: 0px;  
}  
#style-sHKGU.style-sHKGU {  
   top: 167px;  
    left: 1321px;  
    height: 0px;  
    width: 0px;  
}  
#style-A3hIA.style-A3hIA {  
   top: -4px;  
    left: -4px;  
    height: 0px;  
    width: 0px;  
}  
#style-3pli7.style-3pli7 {  
   top: 167px;  
    left: 535px;  
    height: 0px;  
    width: 0px;  
}  
#snipcss-panel-container.style-PYWLU {  
   right: 70px;  
    top: 555.344px;  
}  
#style-hOZTa.style-hOZTa {  
   touch-action: none;  
}  
#style-oeZWj.style-oeZWj {  
   touch-action: none;  
}  
#style-WHapR.style-WHapR {  
   top: -2px;  
    left: 497px;  
    height: 0px;  
    width: 0px;  
}  
#style-XLGtr.style-XLGtr {  
   top: -2px;  
    left: 1361px;  
    height: 0px;  
    width: 0px;  
}  
#style-BoIZC.style-BoIZC {  
   top: -4px;  
    left: -4px;  
    height: 0px;  
    width: 0px;  
}  
#style-kHMiM.style-kHMiM {  
   top: -2px;  
    left: 495px;  
    height: 0px;  
    width: 0px;  
}  
#style-rWDir.style-rWDir {  
   top: -2px;  
    left: 0px;  
    height: 0px;  
    width: 0px;  
}  
#style-Ah5SQ.style-Ah5SQ {  
   top: -4px;  
    left: -4px;  
    height: 0px;  
    width: 0px;  
}  
#style-f5ms8.style-f5ms8 {  
   top: -4px;  
    left: -4px;  
    height: 0px;  
    width: 0px;  
}  
#style-k9neL.style-k9neL {  
   top: -2px;  
    left: -2px;  
    height: 0px;  
    width: 0px;  
}  
#snipcss_display_selector.style-SLlOF {  
   top: 0px;  
    left: 0px;  
    position: absolute;  
    transform: translateX(1829px) translateY(3156px) translateZ(0px);  
}  
#snipcss_goup_button.style-pZyTO {  
   top: 0px;  
    left: 0px;  
    position: absolute;  
    transform: translateX(-2px) translateY(0px) translateZ(0px);  
}  
#snipcss_subselection_button.style-qz1W4 {  
   top: 0px;  
    left: 0px;  
    position: absolute;  
    transform: translateX(1718px) translateY(0px) translateZ(0px);  
}  
#snipcss_subselection_dropdown.style-iOsAs {  
   display: block;  
    top: 0px;  
    position: absolute;  
    transform: translateX(1537px) translateY(24px) translateZ(0px);  
    left: 0px;  
}  
#style-iRiZo.style-iRiZo {  
   top: 0px;  
    left: 0px;  
    position: absolute;  
}  
#snipcss-kiwi.style-CgBLN {  
   left: 1762px;  
    top: 0px;  
}  