/* 
            @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;
            } */
            *{
                box-sizing:border-box ;
            }


            /** RAIN TOGGLE**/

            html {
            height: 100%;
            }

            body {
            height: 100%;
            margin: 0;
            overflow: hidden;
            font-family: "Courier New", monospace;
            /* background-color: #092327; */
            color: white;
            background-image: url(/img/raintobe5.png);
            background-position: bottom;
            background-size: cover; 
            
            }
            


            #container {
                max-width: 60%;
                margin: 0 auto;
                padding:0;
                
                
            }


            #container a {
                color: #e3ffa6;
                
                
            }

            #header {
                width: 100%;
                height: 153px;               
                background-size: 100%;
                display:flex;
                align-items:center;
                
                /*background-image: var(--header-image);*/
            }
            
            #header h1{
                text-align:center;
                font-size:70px;
                color:#c2d2e6;
                text-shadow: 6px 6px #0f4057;
                font-family: "Source Serif 4", serif;             
              }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #c2d2e6;
                width: 100%;
                border-radius: 10px;
                margin-bottom: 10px;
                box-shadow: 10px 10px #0e294987;
            }
            .navbarclass{
                background-image: url(/img/rainTranparent.gif);
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 12px;
            }

            /* navigation links*/
            #navbar li a {
                color: #0f4057;
                font-weight: 800;
                font-weight: bold;
                text-decoration: none;
                /* this removes the underline */
            }

            #navbar li a:hover {
                color: #eaf691;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }

            aside {
                
                width: 200px;
                padding: 20px;
                font-size: smaller;
                
                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background: radial-gradient(circle, rgba(14, 44, 78, 0.89) 0%, rgba(90, 149, 156, 0.7) 61%, rgba(255, 255, 255, 0.47) 100%);
                flex: 1;
                padding: 20px;
                order: 2;
                border-radius:6px;
                border: 2px double #c2d2e6;
                box-shadow: 10px 10px #0e294987;
            }
            
            main img{
                width: 270px;
                float: right;
            }

            #leftSidebar {
                order: 1;
                margin-right: 10px;
                background: radial-gradient(circle, rgba(14, 44, 78, 0.89) 0%, rgba(90, 149, 156, 0.7) 61%, rgba(255, 255, 255, 0.47) 100%);
                border: 2px double #c2d2e6;
                border-radius:6px;
                box-shadow: 10px 10px #0e294987;
                
            }

            .section-update{
                border-top:2px dotted#ffffff;
                margin-bottom: 8px;
            }

            h2,
            h3{
                color:white;
                font-family: "Source Serif 4", serif; 
            }

            h4{
                color: white;
                margin: 0;
                padding: 0;
            }
            h5{
                color: #a8d9f0;
                font-size: 14px;
                margin-top: 8px;
            }
    
            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #132f4e;
                border: 3px dotted #a8d9f0;
                padding: 10px;
                border-radius:10px;
                overflow-y: scroll;
                max-height: 175px;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }

            .umbrella{
                position: absolute;

                right: 3%;
                bottom: 6vh;
                min-width: 200px;
                min-height: 300px;
                
            }

            .umbrella img{
                width: 100%;
                height: 45vh;
            }

            .buttons img{
                width: 88px;
                float:left
              }

            /* BELOW THIS POINT IS MEDIA QUERY */


            @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;
                    margin-bottom: 15px;
                }

                .umbrella{
                    display: none;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }            /* colors */
