@font-face {
    font-family: 'Alliance';
    src: url('./fonts/Alliance No1 Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alliance';
    src: url('./fonts/Alliance No1 Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alliance';
    src: url('./fonts/Alliance No1 Regular Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Alliance';
    src: url('./fonts/Alliance No2 Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alliance';
    src: url('./fonts/Alliance No2 Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Authentic Sans';
    src: url('../fonts/authentic-sans-60.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Authentic Sans';
    src: url('../fonts/authentic-sans-90.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Authentic Sans';
    src: url('../fonts/authentic-sans-130.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Authentic Sans';
    src: url('../fonts/authentic-sans-150.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body{
    font-family: 'Authentic Sans', Arial, sans-serif;
    margin-left: 0;
    padding: 0;
    line-height: 2em;
    cursor: auto;
}

* {
    cursor: auto;
}

a, button, .button-link {
    cursor: pointer;
}

h2{
    box-shadow: inset 0 0px 9px 2px #12f00d;
}

p{
    font-size: 1.2em;
}

a{
    color: black;
}


blockquote {
    font-style: italic;
    color: rgb(104, 101, 101);
    font-size: 95%;
    line-height: 1.7em;
    margin-inline-start: 0px;
    width: 90%;
    }

a:hover{
    filter: blur(3px);
}

.flex-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

ul{
    font-size: 1.2em;
}

li{
    padding-bottom: 0.5em;
}

ul li::marker {
    content: "$ ";
    color: rgb(97, 98, 97);
  }

article, section {
    width: 98%;
    margin: 5em 3em;
    padding: 0 2em;
}

article p, h1, h2, h3, h4, h5, h6 {
    width: 80%;
}

h1, h2, h3 {
    font-family: 'Arial Narrow';
}

h2, h3{

    color: #1ec01a;
}

.dots{
    writing-mode: vertical-rl;
    margin-left: auto;
    margin-right: auto;

}


.divider{
    border: 0.5px solid #12f00d;
    width: 60%;
    margin-top: 1em;
    margin-bottom: 2em;
    box-shadow: 1px 1px 0px 0px #181a18;
}

.content-wrapper {
    margin-top: 1.4em;
}

img{
    max-width: 500px;
    box-shadow: #a49fa5 0px 0px 8px 3px;
}


.button-link {
    font-size: 14px;
    font-family: arial;
    text-decoration: none;
    color: black;
    background: #d0cfcf;
    border-radius: 3px;
    border: none;
    padding: 2px 8px;
    cursor: pointer;
    border: black 1px solid;
}

.small-model{
    position: fixed;
    right: 10px;
    bottom: 10px;
}


.button-link:hover{
    box-shadow: #12f00d 0px 0px 10px 0px;
    filter: none;
}

.side-div {
    width: 1%;
    box-shadow: #12f00d 1px 1px 6px 8px;
    background: #12f00d;
}

pre {
    padding: 1em;
    border-radius: 4px;
    overflow-x: auto;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 14px;
}

code {
    font-family: 'Courier New', monospace;
    background: #c6f5cd;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 14px;
}

pre code {
    background: transparent;
    padding: 0;
}

/* Language tags for tutorials */
.lang-tag {
    display: inline-block;
    font-size: 0.65em;
    padding: 3px 2px;
    font-weight: 600;
    font-family: 'Arial Narrow', Arial, sans-serif;
    white-space: nowrap;
    vertical-align: super;
  color: #1ec01a;
}


/* Responsive Design */
@media (max-width: 1024px) {
    article, section {
        width: 95%;
        margin: 4em 2em;
        padding: 0 1.5em;
    }
    
    article p, h1, h2, h3, h4, h5, h6 {
        width: 90%;
    }
    
    .divider {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
        width: 100%;
    }
    
    .side-div {
        width: 100%;
        height: 2px;
        position: relative;
    }
    
    article, section {
        width: 100%;
        margin: 3em 1em;
        padding: 0 1em;
    }
    
    article p, h1, h2, h3, h4, h5, h6 {
        width: 100%;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    h3 {
        font-size: 1.3em;
    }
    
    p {
        font-size: 1em;
    }
    
    ul {
        font-size: 1em;
    }
    
    .divider {
        width: 90%;
    }
    
    .content-wrapper {
        width: 90%;
        margin-top: 1em;
    }
    
    pre {
        font-size: 12px;
        padding: 0.75em;
        overflow-x: auto;
    }
    
    code {
        font-size: 12px;
    }
    
    img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 1em 0;
    }
    
    pre {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    article, section {
        margin: 2em 0.5em;
        padding: 0 0.5em;
    }
    
    h1 {
        font-size: 1.5em;
    }
    
    h2 {
        font-size: 1.3em;
    }
    
    h3 {
        font-size: 1.1em;
    }
    
    p {
        font-size: 0.95em;
    }

    
    .button-link {
        font-size: 12px;
        padding: 4px 6px;
    }
    
    .divider {
        width: 95%;
    }
    
    .lang-tag {
        font-size: 0.65em;
        padding: 1px 4px;
        margin-left: 6px;
    }
}

