

            :root {
    --header-image: url('IMG_1273.gif');

    --neon-pink: #ff4df8;
    --neon-blue: #3df8ff;
    --neon-yellow: #ffe066;

    --dark-bg: #120028;
    --panel-bg: #180038;
    --sidebar-bg: #22004d;
}

            /* 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;
            }
            @font-face {
    font-family: "Determination";
    src: url("determination.ttf");
}
@font-face {
    font-family: "Lazer84";
    src: url("Lazer84.ttf") format('truetype');
}

body {
    font-family: 'Determination', monospace;
    margin: 0;
    color: white;

    background:
        linear-gradient(
            to bottom,
            #140033 0%,
            #1b0055 40%,
            #0d001f 100%
        );

    background-attachment: fixed;
}
body::before {
    content: "";

    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    height: 40vh;

    background-image:
        linear-gradient(rgba(61,248,255,.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61,248,255,.25) 1px, transparent 1px);

    background-size: 40px 40px;

    transform: perspective(500px) rotateX(75deg);

    pointer-events: none;
}

            * {
                box-sizing: border-box;
            }

            /* 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: 1200px;
    margin: auto;
    padding: 20px;
}

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #ED64F5;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

            #header {
    width: 100%;
    height: 358px;

    background-image: var(--header-image);
    background-size: cover;
    background-position: center;

    border: 4px solid var(--neon-pink);

    box-shadow:
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink);
}

            /* navigation section!! */
            #navbar {
    display: flex;
    justify-content: center;
    align-items: flex-end;

    gap: 25px;

    margin-top: 20px;
    margin-bottom: 30px;

    background: transparent;

    border: none;

    box-shadow: none;

    height: 180px;
  
    background-image:
        linear-gradient(rgba(61,248,255,.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61,248,255,.2) 1px, transparent 1px);

    background-size: 20px 20px;

    border: 2px solid #3df8ff;

    box-shadow:
        0 0 10px #3df8ff;

}
.nav-item {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-decoration: none;

    transition: .3s;
}
.nav-item img {
    width: 105px;

    height: 140px;
    margin-bottom: -5px;
    object-fit: contain;

    transition: .3s;

    filter:
        drop-shadow(0 0 5px #ff4df8)
        drop-shadow(0 0 10px #ff4df8);
}
.nav-item:hover img {
    transform:
        translateY(-10px)
        scale(1.1);

    filter:
        drop-shadow(0 0 10px #3df8ff)
        drop-shadow(0 0 20px #3df8ff);
}
.nav-item span {

    margin-top: -10px;

    padding: 8px 20px;

    background: #16002f;

    border: 2px solid #3df8ff;

    color: white;

    font-weight: bold;

    text-transform: uppercase;

    box-shadow:
        0 0 5px #3df8ff,
        0 0 10px #3df8ff;
}
          #navbar ul {
    display: flex;
    justify-content: center;
    gap: 15px;

    list-style: none;
    padding: 0;
    margin: 0;
}

          #navbar li {
    padding-top: 0;
}

            /* navigation links*/
          #navbar li a {
    color: white;

    text-decoration: none;

    padding: 8px 18px;

    border: 2px solid var(--neon-blue);

    background: rgba(0,0,0,.3);

    font-weight: bold;

    transition: .3s;
}
            /* navigation link when a link is hovered over */
            #navbar li a:hover {
    background: var(--neon-blue);

    color: black;

    box-shadow:
        0 0 10px var(--neon-blue),
        0 0 20px var(--neon-blue);
}
            #flex {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
    background: var(--sidebar-bg);

    width:300px;

    padding: 20px;

    border: 3px solid var(--neon-pink);

    box-shadow:
        0 0 10px var(--neon-pink),
        inset 0 0 10px rgba(255,77,248,.3);

    font-size: smaller;
}

            /* this is the color of the main content area,
    between the sidebars! */
            main {
    flex: 1;
    order: 2;

    position: relative;

    background: var(--panel-bg);

    padding: 45px;

    border: 4px solid var(--neon-pink);

    box-shadow:
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        inset 0 0 20px rgba(255,77,248,.2);

    overflow: hidden;
}
main::before {
    content: "";

    position: absolute;

    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;

    border: 2px solid var(--neon-blue);

    pointer-events: none;
}

            /* 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: #15002e;

    border: 3px solid var(--neon-blue);

    width: 100%;

    padding: 15px;

    text-align: center;

    box-shadow:
        0 0 10px var(--neon-blue);

    height: auto;
}

            h1,
h2,
h3 {
    color: var(--neon-yellow);
    text-shadow:
        0 0 1px var(--neon-yellow),
        0 0 1px var(--neon-yellow);
}

h1 {
    font-size: 28px;
    letter-spacing: 3px;
}
h2 {
    font-family: 'Lazer84', sans-serif;
}

            strong {
                /* this styles bold text */
                color: #ED64F5;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
    background: rgba(0,0,0,.35);

    border: 2px solid var(--neon-blue);

    padding: 12px;

    box-shadow:
        0 0 10px var(--neon-blue);
}
.spotify-box {
    background: rgba(0,0,0,.35);

    border: 2px solid var(--neon-blue);

    padding: 8px;

    box-shadow:
        0 0 10px var(--neon-blue);

    overflow: hidden;
}
.spotify-box iframe {
  height: 402px;
    width: 100%;
    border: none;
}
.spotify-box p {
    text-align: center;
    color: var(--neon-pink);
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-pink);
}
.galeria-fosiles {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.galeria-fosiles img {
    width: 180px;
    height: 250px;

    object-fit: cover;

    border: 3px solid var(--neon-blue);
border-radius: 15px;
    box-shadow:
        0 0 5px var(--neon-blue),
        0 0 15px var(--neon-blue);

    cursor: pointer;

    transition: all .3s ease;
}

.galeria-fosiles img:hover {
    transform: scale(1.15);

    border-color: var(--neon-pink);
border-radius: 15px;
    box-shadow:
        0 0 10px var(--neon-pink),
        0 0 25px var(--neon-pink);
}
#lightbox {
    display: none;

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.9);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

#lightbox img {

    max-width: 85%;
    max-height: 85%;

    border: 4px solid var(--neon-pink);
border-radius: 22px;
    box-shadow:
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink);
}
            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }
.blog-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.blog-entry {

    display: flex;
    align-items: center;

    gap: 20px;

    padding: 15px;

    background: rgba(20,0,50,.8);

    border: 3px solid var(--neon-blue);

    box-shadow:
        0 0 8px var(--neon-blue),
        inset 0 0 10px rgba(61,248,255,.2);

    text-decoration: none;

    transition: .3s;
}
.blog-entry:hover {

    transform: translateX(10px);

    border-color: var(--neon-pink);

    box-shadow:
        0 0 15px var(--neon-pink),
        0 0 30px var(--neon-pink);
}
.blog-entry img {

    width: 90px;

    height: 90px;

    object-fit: cover;

    border: 2px solid var(--neon-yellow);

    box-shadow:
        0 0 8px var(--neon-yellow);

    flex-shrink: 0;
}
.entry-text h3 {

    margin: 0;

    color: var(--neon-yellow);

    font-size: 1.4em;

    text-shadow:
        2px 2px 3px rgba(0,0,0,.8);
}
.entry-text p {

    margin-top: 8px;

    color: var(--neon-blue);

    font-size: .9em;
}


            /* 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: 100%;
                }

                /* 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;
                }
            }
          
        
        
        
        
        
        
        
        
        
        
        