            :root {
                --header-image: url('../img/sea2.jpg');
                --body-bg-image: url('../img/shootingstar.gif');

                /* colors */
                --content: #09e823;
            }

            /*@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: 35em;
                color: #D5DBE2;
                background-image: url('../img/shootingstar.gif');
            }

            * {
                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: 1050px;
                /* 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: 1.5em auto;
                /* this centers the entire page */
                background-color: rgba(0,0,0,0.5);
                border: 2px solid #003DE3;
            }

            /* the area below is for all links on your page
            EXCEPT for the navigation */
            #container a {
                color: #00e9ff;
                font-weight: bold;
                /* if you want to remove the underline
                you can add a line below here that says:
                text-decoration:none; */
            }
            #container a:hover{
                color: #0a00fc;
            }

            #header {
                width: 100%;
                background-color: #5e4e8c;
                /* header color here! */
                /* 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-size: 100%;
                background-position-y: -56px;
                background-image: url('../img/sea2.jpg');
                position: relative;
            }

            /* navigation section!! */
            
            #navbar {
                height: 30px;
                background-color: rgba(10,0,252,0.4);
                /* navbar color */
                width: 100%;
                position: absolute;
                bottom: 0;
                text-shadow: 2px 2px 8px black;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 4px;
            }

            /* navigation links*/
            #navbar li a {
                color: #00e9ff;
                /* navbar text color */
                font-weight: normal;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #009dff;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }

            aside {
                background-color: #002451;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }

            main {
                background-color: #001C40;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            /* 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;
                position: sticky;
            }

            footer {
                background-color: #001733;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                font-size: smaller;
                /* this centers the footer text */
            }

            h2, h3, h4 {
                color: #00E9FF;
            }

            h1 {
                font-size: 24px;
                color: #FA8090;
            }

            strong {
                /* this styles bold text */
                color: #00E9FF
            }

            /* this is just a cool box, it's the darker colored one */
            .caja {
                background-color: #021556;
                border: 1px solid #00ffd8;
                padding: 10px;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #009dff;
            }


            /* 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: 1050px) {
                #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;
                }
            }

.logo{
  position:absolute;
  font-family: 'Georgia', serif;
  font-size: 48px;
  font-weight: normal;
  font-style: italic;
  color: #00ffd8;
  text-shadow: 2px 2px 8px black;
  text-decoration: none;
  cursor: default;
  margin-left: 40px;
  margin-top: 24px;
}

#warning{
    text-align: right;
    padding: 1px;
    color: 	#00e9ff;
    text-shadow: none;
}

details summary {
  padding: 6px;
  cursor: pointer;
}

summary h1 {
display: inline;
}