            :root {
                --header-image: url(../images/pg_new/wallpaper2.png);
                --body-bg-image: url(../images/pg_new/waves2.gif);
                --content: #051027;
            }

            @font-face {
                font-family: Nunito;
                src: url('../fonts/Nunito/Nunito-Regular.ttf');
            }

            @font-face {
                font-family: Nunito;
                src: url('../fonts/Nunito/Nunito-Bold.ttf');
                font-weight: bold;
            }

            @font-face {
                font-family: Nunito;
                src: url('../fonts/Nunito/Nunito-Italic.ttf');
                font-style: italic;
            }

            @font-face {
                font-family: Nunito;
                src: url('../fonts/Nunito/Nunito-BoldItalic.ttf');
                font-style: italic;
                font-weight: bold;
            }

            body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
                background-color: #051027;
                background-size: cover;
                color: #a1ffe1;
                background-image: var(--body-bg-image);
                background-repeat: no-repeat;
                background-position: center;
                background-position-y: 0px;
            }

            button1 {
              background-color: #034453;
              border: none;
              color: #a1ffe1;
              padding: 10px;
              text-align: center;
              text-decoration: none;
              display: block;
              font-size: 15px;
              margin: 10px;
              * li a:hover {
                color: #ffffff;
                text-decoration: underline;
              }
            }

            * { cursor: url(../cursors/fishh2.png), default;  }
            html * {
            cursor: url(../cursors/fishh2.png), auto;
            }
            html a {
            cursor: url(../cursors/fishh2\(hoverr\).png), auto;
            }
            button1 {
            cursor: url(../cursors/fishh2\(hoverr\).png), auto;
            }
            * {
                box-sizing: border-box;
            }


            /* CSS for the layout */ /* ---------------------------------------------------------------------------------------------------------------------------------------------------------- */
            #container {
                max-width: 1100px;
                margin: 0 auto;
                filter: drop-shadow(0rem 0rem 0.5rem black);
            }

            #container a {
                color: #a1ffe1;
                font-weight: bold;
            }

            #header {
                width: 100%;
                background-color: #051027;
                height: 150px;
                background-image: var(--header-image);
                background-repeat: no-repeat;
                background-size: cover;
            }

            #navbar {
                height: 40px;
                background-color: #051027;
                width: 100%;
            }

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

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

            #navbar li a {
                color: #a1ffe1;
                font-weight: 800;
                text-decoration: none;
            }

            #navbar li a:hover {
                color: #ffffff;
                text-decoration: underline;
            }


            #button1 li a {
                color: #a1ffe1;
                font-weight: 800;
                text-decoration: none;
            }

            #button1 li a:hover {
                color: #ffffff;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }

            /* sidebars */ /* ---------------------------------------------------------------------------------------------------------------------------------------------------------- */
            
            aside {
                background-color: #051027;
                width: 200px;
                padding: 20px;
                font-size: smaller;
            }

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

            /* order */ /* ---------------------------------------------------------------------------------------------------------------------------------------------------------- */

            #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #051027;
                width: 100%;
                height: 40px;
                padding: 0px;
                text-align: center;
            }

            h1 {
              
            }
            h2 {
            padding-top: 10px;
            padding-bottom: 5px;
            margin: 0px;
            }
            h3 {
                color: #a1ffe1;
            }
            h4 {
            padding-top: 0px;
            padding-bottom: 10px;
            margin: 0px;
            }
            h1 {
                font-size: 25px;
            }

            strong {
                color: #a1ffe1;
            }

            .box {
                background-color: #051027;
                border: 1px solid #a1ffe1;
                padding: 10px;
            }

            /* CSS for extras */ /* ---------------------------------------------------------------------------------------------------------------------------------------------------------- */

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

            /* MEDIA QUERY */ /* ---------------------------------------------------------------------------------------------------------------------------------------------------------- */

            /* max-width 800 px for responsiveness */

            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }