
        /*-- THIS IS THE CSS !--*/
 
            /* user styles */

            /* styles are what change the color and sizes of stuff on your site. */

            /* these are variables that are being used in the code
    these tended to confuse some people, so I only kept 
    the images as variables */

            :root {
                --header-image: url('https://axiom-nexus.neocities.org/images/SWLogo_Mid.png');
                --body-bg-image: url('https://axiom-nexus.neocities.org/images/sw_big.png');

                /* colors */
                --content: #43256E;
            }

            /* if you have the URL of a font, you can set it below */
            /* feel free to delete this if it's not your vibe */

            /* this seems like a lot for just one font and I would have to agree 
    but I wanted to include an example of how to include a custom font.
    If you download a font file you can upload it onto your Neocities
    and then link it! Many fonts have separate files for each style
    (bold, italic, etc. T_T) which is why there are so many!
    
    */

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
            }

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
                font-weight: bold;
            }

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
                font-style: italic;
            }

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
                font-style: italic;
                font-weight: bold;
            }

            body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
                background-color: #08031A;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 300px;
                color: #fceaff;
                background-image: var(--body-bg-image);
                  background-attachment: fixed;
            }

            * {
                box-sizing: border-box;
            }
            
            /* yan made a box!! */
            .post1 {
                border-radius: 0px;
                width: 100%;
                background: #071013af;
                box-shadow: 0 4px 30px rgba(80, 233, 255, 0.2);
                backdrop-filter: blur(1px);
                -webkit-backdrop-filter: blur(2px);
                border: 5px double rgba(80, 233, 255, 1);
                padding: 20px;
                height: 700px;
                overflow:scroll;
                overflow-x:hidden;
                border-color: #50e9ff;
                border-radius: 0px 0px 0px 0px;
                
            }
            .post2 {
                border-radius: 20px;
                width: 100%;
                background-color: #0e121f;
                padding: 20px;
                border: 1px solid #2493c66e;

            }
            .post3 {
                border-radius: 10px;
                width: 100%;
                background-color: #0e121f;
                padding: 1px;
                /* border: 1px solid #2493c66e; */
                background: linear-gradient(0deg,rgba(6, 53, 92, 1) 0%, rgba(0, 0, 0, 1) 42%, rgba(182, 204, 212, 1) 100%);
                text-align: center;
            }

            /* below this line is CSS for the layout */

            /* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */


            /* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            #container {
                max-width: 900px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
            }


             /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #ffab09;
                font-weight: bold;
                text-decoration:none
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }
            /* different color link when a link is hovered over */
            #container a:hover {
                color: #ffdb4a;
                text-decoration:none;
            }
            
            #header {
                width: 100%;
                background-color: none;
                /* header color here! */
                height: 72px;
                /* this is only for a background image! */
                /* if you want to put images IN the header, 
                you can add them directly to the <div id="header"></div> element! */
                background-image: var(--header-image);
                background-size: 100%;
                background-repeat: no-repeat;
                margin-top: 20px;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: none;
                /* navbar color */
                width: 100%;
            }

            /* navbar tabs */
            #navtab {
                height: 40px;
                background-color: none;
                /* navtab color */
                width: 100%;
            }
            #navtab2 {
                height: 40px;
                background-color: none;
                /* navtab color */
                width: 100%;
            }
            #navtab3 {
                height: 40px;
                background-color: none;
                /* navtab color */
                width: 100%;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 10px;
                
            }
            #navtab ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navtab li {
                padding-top: 10px;
            }

            #navtab2 ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navtab2 li {
                padding-top: 10px;
            }

            #navtab3 ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navtab3 li {
                padding-top: 10px;
            }

            /* navigation links*/
            #navbar li a {
                color: #ff945e;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
                height: 40px;
                background-color: #0e121f;
                padding: 10px;
                padding-left: 32px;
                padding-right: 32px;
                border-radius: 15px 30px 0px 0px;
                border: 1px solid #2493c66e;
            }
            #navtab li a {
                color: black;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
                height: 40px;
                background-color: #50e9ff;
                padding: 10px;
                margin-left: 10px;
                padding-left: 32px;
                padding-right: 32px;
                border-radius: 15px 30px 0px 0px;
                box-shadow: 0 4px 30px rgba(80, 233, 255, 0.5);
            }

            #navtab2 li a {
                color: black;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
                height: 40px;
                background-color: #50e9ff;
                padding: 10px;
                margin-left: 0px;
                padding-left: 32px;
                padding-right: 32px;
                border-radius: 15px 30px 0px 0px;
                box-shadow: 0 4px 30px rgba(80, 233, 255, 0.5);
            }

            #navtab3 li a {
                color: black;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
                height: 40px;
                background-color: #50e9ff;
                padding: 10px;
                margin-left: 15px;
                padding-left: 32px;
                padding-right: 32px;
                border-radius: 15px 30px 0px 0px;
                box-shadow: 0 4px 30px rgba(80, 233, 255, 0.5);
            }
            

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: white;
                height: 40px;
                background-color: #50e9ff;
                padding: 10px;
                padding-left: 32px;
                padding-right: 32px;
                border-radius: 15px 30px 0px 0px;
                text-decoration: none;
                box-shadow: 0 4px 30px rgba(80, 233, 255, 0.5);
            }
            #navtab li a:hover {
                color: white;
                height: 40px;
                background-color: #50e9ff;
                padding: 10px;
                padding-left: 32px;
                padding-right: 32px;
                border-radius: 15px 30px 0px 0px;
                text-decoration: none;
            }
            #navtab2 li a:hover {
                color: white;
                height: 40px;
                background-color: #50e9ff;
                padding: 10px;
                padding-left: 32px;
                padding-right: 32px;
                border-radius: 15px 30px 0px 0px;
                text-decoration: none;
            }

            #navtab3 li a:hover {
                color: white;
                height: 40px;
                background-color: #50e9ff;
                padding: 10px;
                padding-left: 32px;
                padding-right: 32px;
                border-radius: 15px 30px 0px 0px;
                text-decoration: none;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                /* From https://css.glass */
                background: #071013af;
                box-shadow: 0 4px 30px rgba(80, 233, 255, 0.2);
                backdrop-filter: blur(1px);
                -webkit-backdrop-filter: blur(2px);
                border: 5px double rgba(80, 233, 255, 1);
                width: 235px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
                border-radius: 0px 0px 0px 0px;
                
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: none;
                border-radius: 15px;
                flex: 1;
                padding: 0px;
                order: 2;
            }
            
            /* yan tryna do smth here with the list shit */
            
            ul.b {
                list-style-type: square;
                

            }
         
            li::marker {
               color: #1efa4d;
            }


            /* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

            #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #0e121f;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
                border-radius: 0px 0px 20px 20px;
                border: 1px solid #2493c66e;
                
            }

              /* yan changes heading colors */
            h1 {
                color: #ff69b3;
                font-size: 1.95em;
            }
            
            h2 {
                color: #ED64F5 ;
                margin-top: 5px;
                margin-bottom: 5px;
            }
            
            h3 {
                color: #fff;
                margin-bottom: 0;
            }
            
            h4 {
                color: #fff;
                line-height: 80%;
                margin-bottom: 0;
            }

            strong {
                /* this styles bold text */
                color: #aa6eff;
            }

            b {
                color: #2eb6ff;
            }

            /* yan makes underline cooler */
            .underline { 
                border-bottom:1px solid #ff945e; 
                width: 550px;
                padding-bottom:5px;
            }
            .underline2 { 
                border-bottom:1px solid #ff69b3; 
                width:500px;
                padding-bottom:5px;
                margin-left: auto;
                margin-right: auto;
            }
            .underline20 { 
                border-bottom:1px solid #ff945e; 
                width:260px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline21 { 
                border-bottom:1px solid #aa6eff; 
                width:260px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline22 { 
                border-bottom:1px solid #ff69b3; 
                width:260px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline23 { 
                border-bottom:1px solid #0aa8fc; 
                width:260px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline24 { 
                border-bottom:1px solid limegreen; 
                width:260px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline25 { 
                border-bottom:1px solid #ffdb4a; 
                width:260px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline26 { 
                border-bottom:1px solid red; 
                width:260px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline27 { 
                border-bottom:1px solid whitesmoke; 
                width:260px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline28 { 
                border-bottom:1px solid slategray; 
                width:260px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline29 { 
                border-bottom:1px solid #50eaff; 
                width:260px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline291 { 
                border-bottom:1px solid silver; 
                width:260px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline292 { 
                border-bottom:1px solid #ffab09; 
                width:260px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline30 { 
                border-bottom:1px solid orangered; 
                width:260px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline3 { 
                border-bottom:1px solid #0aa8fc; 
                width:400px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline32 { 
                border-bottom:1px solid #ff69b3; 
                width:400px;
                padding-bottom:5px;
                margin-bottom: 0px;
                font-size: 1.2em;
            }
            .underline4 { 
                border-bottom:1px solid #aa6eff; 
                width: 550px;
                padding-bottom:5px;
            }
            .underline5 { 
                border-bottom:1px solid #ff69b3; 
                width: 550px;
                padding-bottom:5px;
            }
            .underline6 { 
                border-bottom:1px solid limegreen; 
                width: 550px;
                padding-bottom:5px;
            }
            .underline7 { 
                border-bottom:1px solid #ffdb4a; 
                width: 550px;
                padding-bottom:5px;
            }
            .underline8 { 
                border-bottom:1px solid #ff6d01; 
                width: 550px;
                padding-bottom:5px;
            }
            .underline9 { 
                border-bottom:1px solid #0aa8fc; 
                width: 550px;
                padding-bottom:5px;
            }
            .underline10 { 
                border-bottom:1px solid #50eaff; 
                width: 550px;
                padding-bottom:5px;
            }
            .underline11 { 
                border-bottom:1px solid lightsteelblue; 
                width: 550px;
                padding-bottom:5px;
            }
            .underline12 { 
                border-bottom:1px solid orangered; 
                width: 550px;
                padding-bottom:5px;
            }
            .underline13 { 
                border-bottom:1px solid red; 
                width: 550px;
                padding-bottom:5px;
            }


            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #0e121f;
                  border-radius: 20px;
                border: 1px solid #2493c66e;
                padding: 10px;
                overflow-x: hidden;
                width: 200px;
                opacity: 1;
                text-align: center;
                margin-left: -5px;
                
            }
            
            
            .box_2 {
                background-color: none;
                  border-radius: 20px;
                border: 1px solid #ED64F5;
                padding: 10px;
                opacity: 1;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 0px;
                font-size: smaller;
                background-color: none;
            }


            /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 50%;
                }

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }

            .img {
                opacity:1;
               /* box-shadow: 0px 0px 10px #000;*/
            }  
            /*.img:hover 
                color: #424242 
              -webkit-transition: all .3s ease-in
              -moz-transition: all .3s ease-in
              -ms-transition: all .3s ease-in
              -o-transition: all .3s ease-in
              transition: all .3s ease-in
              opacity: 1
              transform: scale(1.5)
              -ms-transform: scale(1.5)  IE 9 
              -webkit-transform: scale(1.5);  Safari and Chrome */

            .side {
                padding: 3px;
                border-radius: 5px;
                background: #06355c;
                background: linear-gradient(0deg,rgba(6, 53, 92, 1) 0%, rgba(0, 0, 0, 1) 42%, rgba(182, 204, 212, 1) 100%);
                margin-bottom: -15px;
            }

             
            /* Dropdown Directory */
            .dropdown-btn {
                text-decoration: none;
                color: #ffab09;
                font-weight: bold;
                display: block;
                border: none;
                width: 100%;
                text-align: center;
                cursor: pointer;
                outline: none;
                margin-left: 0px;
                padding: 10px;
                border-radius: 5px;
                background: #06355c;
                background: linear-gradient(0deg,rgba(6, 53, 92, 1) 0%, rgba(0, 0, 0, 1) 42%, rgba(182, 204, 212, 1) 100%);
                margin-bottom: 10px;
                }
                /* Add an active class to the active dropdown button */
                .active {
                background-color: black;
                color: white;
                }
                /* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
                .dropdown-container {
                display: none;
                width: 100%;
                background-color: #010101;
                padding-left: 20px;
                line-height: 25px;
                padding-top: 5px;
                padding-bottom: 5px;
                text-align: left;
                margin-top: -10px;
                margin-bottom: 10px;
                border-radius: 0px 0px 10px 10px;
                }
        
                .dropdown-btn:hover {
                    color: #ffdb4a;
                    text-decoration: None;
                  }

                /* Collapsible stuff from 2025 */
                .collapsible {
                    background-color: #0e121f;
                    color: white;
                    cursor: pointer;
                    padding: 0px;
                    width: 70%;
                    border: none;
                    text-align: left;
                    outline: none;
                    font-size: 16px;
                    margin-top: 0px;
                    margin-left: 10px;

                  }

                /* Collapsible stuff from 2025 */
                .collapsible3 {
                    background-color:#262424;
                    color: white;
                    cursor: pointer;
                    padding: 5px;
                    width: 25%;
                    border: none;
                    text-align: left;
                    outline: none;
                    font-size: 16px;
                    margin-top: 5px;
                    margin-left: 37%;
                  }

                  /* Short Version for Columns Collapsible stuff from 2025 */
                .collapsible2 {
                    background-color: #0e121f;
                    color: white;
                    cursor: pointer;
                    padding: 0px;
                    width: 90%;
                    border: none;
                    text-align: left;
                    outline: none;
                    font-size: 16px;
                    margin-top: 0px;
                    margin-left: 10px;
                  }
                  
                  .active2, .collapsible:hover {
                    background-color: #0e121f;
                  }
                  
                  .collapsible:after {
                    content: '\002B';
                    color: #fee28b;
                    font-weight: bold;
                    float: right;
                    margin-left: 5px;
                    margin-top: -30px;
                    font-size: 25px;
                  }

                  .collapsible3:after {
                    content: '\002B';
                    color: #fee28b;
                    font-weight: bold;
                    float: right;
                    margin-left: -25px;
                    margin-top: -25px;
                    font-size: 25px;
                  }

                  /* Short Version for Columns Collapsible stuff from 2025 */
                  .collapsible2:after {
                    content: '\002B';
                    color: #fee28b;
                    font-weight: bold;
                    float: right;
                    margin-left: 5px;
                    margin-top: -30px;
                    font-size: 25px;
                  }
                  
                  .active2:after {
                    content: "\2212";
                    color: #bd5eff;

                  }
                  
                  .content {
                    background-color: #050b0d;
                    padding: 0 25px;
                    max-width: 95%;
                    max-height:0px;
                    margin-top: 0px;
                    overflow: hidden;
                    transition: max-height 0.2s ease-out;
                    margin-left: 10px;
                    box-shadow: inset 0px 0px 10px #0e121f;
                    margin-bottom: 12px;
                  }

                  .content3 {
                    padding: 0 15px;
                    max-width: 90%;
                    max-height: 1px;
                    margin-top: 5px;
                    overflow: hidden;
                    transition: max-height 0.2s ease-out;
                    margin-left: auto;
                    margin-right: auto;
                  }


                    /* Create two equal columns that floats next to each other */
                    .column {
                    float: left;
                    width: 50%;
                    padding: 0px;
                    }

                    /* Clear floats after the columns */
                    .row:after {
                    content: "";
                    display: table;
                    clear: both;
                    }


