body {
    		background-image: url("/Images/bg.png");
    		background-size:80px;
    		background-repeat: repeat;
    		background-repeat: top left;
    		font-family: Nunito;
    		
    	}
#clickon:hover{
  cursor:pointer;
}

#dropmenu:hover{
  cursor:pointer;
}
            @font-face {
                font-family: Nunito;
                src: url('/Fonts/Nunito-Black.ttf');
                font-weight: bold;

            }

            @font-face {
                font-family: Nunito;
                src: url('/Fonts/Nunito-Bold.ttf');
            }

            @font-face {
                font-family: Nunito;
                src: url('/Fonts/Nunito-Italic.ttf');
                font-style: italic;
            }

            @font-face {
                font-family: Nunito;
                src: url('/Fonts/Nunito-BoldItalic.ttf');
                font-style: italic;
                font-weight: bold;
            }

            * {
                box-sizing: border-box;
            }

            #container {
                max-width: 900px;
                margin: 0 auto;
                color: #FDFDFD;
            }
            #container a {
                color: #E79F64;
                font-weight: bold;
            }
            #container ul{
                color: #E79F64;
                font-weight: bold;
            }
            #header {
                width: 100%;
                //#5e4e8c;//
                height: 150px;
                background-size: 100%;
            }
            #navbar {
                height: 40px;
                background-color: #457b9d;
                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: #f4a261;
                font-weight: 800;
                text-decoration: none;
            }
            #navbar li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }
            aside {
                background-color: #1E7380;
                width: 200px;
                padding: 20px;
                font-size: smaller;
            }
            main {
                background-color: #4699A5;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            #leftSidebar {
                order: 1;
            }
            #leftSidebar li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

            footer {
                background-color: #457b9d;
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
            }

            h1,
            h2,
            h3 {
                color: #F3AF77;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                
            }

            .box {
                border: 1px solid #9CC3C9;
                padding: 20px;
            }


            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #457b9d;
            }
            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }