 :root {

                --content:#9bb1e9;
            }
            

            @font-face {
                font-family: Frail;
                src: url('/Cac/Cadman_Roman.otf');
            }
            
            
            body {
                font-family: 'Frail';
                margin: 0;
                font-size: 19px;
                background-size: 65px;
                color: #FFF5CE;
                background-color: #111111;
                
            }
            
            

            #container {
                max-width: 1100px;
                /* 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: 0 auto;
                /* this centers the entire page */
            }
            

            /* the area below is for all links on your page
               EXCEPT for the navigation */
            #container a {
                color: #FFF5CE;
                font-weight: bold;
                text-decoration:none;
                display:inline-block;
                margin: 1px;
      
            }
            
            
            #container a:hover {
                color: #304862;
                text-decoration:underline;
                transform:rotate(-6deg);
      
            }
            

            /* navigation link when a link is hovered over */
            #container li a:hover {
                color: #304862;
                text-decoration:underline;
                transform:rotate(-6deg);
            
            }
            

            #header {
                width: 100%;
                max-height: 115px;
                height: 150px;
                margin-bottom: 45px;
                margin-top: 10px;
                outline: 10px double #5B4124;
                outline-offset: 0px;
                background: rgba(113,113,113,0.75) none no-repeat scroll 0px 0px;
                background-size: cover;
                -webkit-box-shadow: 10px 10px 10px 5px rgba(51,51,51,0.9); 
                box-shadow: 10px 10px 10px 5px rgba(51,51,51,0.9);
                -webkit-border-radius: 2px;
                border-radius: 2px;
            }
            


            #navbar {
                height: 45px;
                width: 100%;
            }
            

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }
            

            #navbar li {
                padding-top: 20px;
            }
            

            /* navigation links*/
            #navbar li a {
                background-color: #717171;
                border: 5px double #333333;
                padding: 3px 15px;
                -webkit-box-shadow: 7px 7px 10px 5px rgba(51,51,51,0.9); 
                box-shadow: 7px 7px 10px 5px rgba(51,51,51,0.9);
                -webkit-border-radius: 4px;
                border-radius: 4px;
                color: #333333;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                display:inline-block;
                margin: 1px;
            }
            

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                background-color: #B6C9EA;
                border: 5px double #304862;
                padding: 3px 15px;
                -webkit-box-shadow: 10px 5px 10px 5px rgba(91,65,36,0.9); 
                box-shadow: 10px 5px 10px 5px rgba(91,65,36,0.9);
                color: #304862;
                text-decoration:none;
                transform:rotate(6deg);
            }
            

            #flex {
                display: flex;
            }
            

            /* this colors BOTH sidebars
              if you want to style them separately,
              create styles for #leftSidebar and #rightSidebar */
            aside {
                max-width: 140px;
                max-height: 660px;
                padding: 15px;
                outline: 10px double #5B4124;
                outline-offset: 0px;
                font-size: smaller;
                text-align: left;
                background: rgba(51,51,51,0.90) none no-repeat scroll 0px 0px;
                background-size: 100% 100% 
                /* this makes the sidebar text slightly smaller */
                -webkit-box-shadow: 12px 12px 10px 5px rgba(48,72,98,0.9); 
                box-shadow: 12px 12px 10px 5px rgba(48,72,98,0.9);
                -webkit-border-radius: 2px;
                border-radius: 2px;
            }
            

            main {
                flex: 1;
                max-width: 1200px;
                padding: 70px;
                margin-bottom: 30px;
                outline: 10px double #5B4124;
                outline-offset: 0px;
                order: 2;
                background: rgba(51,51,51,0.90) none no-repeat scroll 0px 0px;
                background-size: 100% 100%
                -webkit-box-shadow: 12px 12px 10px 5px rgba(48,72,98,0.9); 
                box-shadow: 12px 12px 10px 5px rgba(48,72,98,0.9);
                -webkit-border-radius: 2px;
                border-radius: 2px;
                      
            }
            
        
            

            /* 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 {
                width: 100%;
                height: 60px;
                padding: 5px;
                text-align: center;
                color: #E7E7E8;
                text-shadow: -2px 0 #304862, 0 2px #304862, 2px 0 #304862, 0 -2px #304862;
            }

            h1,
            h2,
            h3 {
                color: #FFF5CE;
            }

            h1,
            h2 {
                font-size: 25px;
                text-align: center;
                border-bottom: 3px dashed #FFF5CE;
            }   

            strong {
                /* this styles bold text */
                color: #FFF5CE
                
                      /* #E7E7E8;
                       text-shadow: -2px 0 #304862, 0 2px #304862, 2px 0 #304862, 0 -2px #304862; */
            }
            
            .bigger {
                   font-size:120%;
                   border-bottom: 3px dashed #FFF5CE;             
            }  
            
            .smaller {
                   font-size:65%;
                    
            } 
            
            
            .mar {
                   font-size:120%;
            } 
            
            .columns {
                      columns:2;
                      column-gap:15px;
            }
            
            .columns ul {
                        margin-top:0;
            }
            
            
            .left {
                  width: 120%;

            }

            .right {
                  width: 30%;
                 float: right;
                 padding: 100px;

            }
            
            
          .row { 
               column-count: 2;
               padding: 20px;
               
            }  
          
          
            .C {
             background-color: #EFDA96;
                border: 7px double #5B4124;
                padding: 7px 20px;
                -webkit-box-shadow: 7px 7px 10px 5px rgba(91,65,36,0.9); 
                box-shadow: 7px 7px 10px 5px rgba(91,65,36,0.9);
                -webkit-border-radius: 4px;
                border-radius: 4px;
                color: #5B4124;
                text-decoration: none;
                display:inline-block;
                margin: 10px;

           }
           
           
           
   
           
           .gallery {
                    margin: 10px 68px;
                            
                    
           }
           
           .gallery img {
                       transition: 1s;
                       padding: 0px;
                       border: 10px double #5B4124;
           }
           
          .gallery img:hover {
                           transform: scale(1.5);
           }     
            
            
            
/* Dropdown Button */

          .dropbtn {
                font-family: 'Frail';
                background-color: #EFDA96;
                border: 5px double #5B4124;
                padding: 3px 25px;
                -webkit-box-shadow: 7px 7px 10px 5px rgba(91,65,36,0.9); 
                box-shadow: 7px 7px 10px 5px rgba(91,65,36,0.9);
                -webkit-border-radius: 4px;
                border-radius: 4px;
                color: #5B4124;
                font-weight: 800;
                text-decoration: none;
                display:inline-block;
                margin: 1px;
           }

/* Dropdown button on hover & focus */
          .dropbtn:hover, .dropbtn:focus {
                background-color: #B6C9EA;
                border: 5px double #304862;
                padding: 3px 25px;
                -webkit-box-shadow: 10px 5px 10px 5px rgba(91,65,36,0.9); 
                box-shadow: 10px 5px 10px 5px rgba(91,65,36,0.9);
                color: #304862;
                text-decoration:none;
            }

/* The container <div> - needed to position the dropdown content */
             .dropdown {
                position: relative;
                display: inline-block;
            }

/* Dropdown Content (Hidden by Default) */
            .dropdown-content {
                display: none;
                position: absolute;
                background-color: #EFDA96;
                border: 5px double #5B4124;
                padding: 3px 15px;
                -webkit-box-shadow: 7px 7px 10px 5px rgba(91,65,36,0.9); 
                box-shadow: 7px 7px 10px 5px rgba(91,65,36,0.9);
                -webkit-border-radius: 4px;
                border-radius: 4px;
                color: #5B4124;
                min-width: auto;
                z-index: 1;
            }

/* Links inside the dropdown */
            .dropdown-content a {
                padding: 5px 5px;
                color: #5B4124;
                font-weight: 800;
                text-decoration: none;
                display:inline-block;
                margin: 3px;
            }

/* Change color of dropdown links on hover */
            .dropdown-content a:hover {
                padding: 5px 5px;
                color: #304862;
                text-decoration:underline;
                transform:rotate(-6deg);
            }
                

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
            .show {display:block;}
            




            
/*Marquee*/
            .container {
                        overflow: hidden;
                        white-space: nowrap;
            }

            .scrolling {
                       animation: marquee 10s linear infinite;
                       display: inline-block;
                       padding-right: 20px;
                       color: #FFF5CE;
                       text-shadow: -2px 0 #111111, 0 2px #111111, 2px 0 #111111, 0 -2px #111111;
                      /* text-shadow: 3px 3px 3px #304862; */
            }

            @keyframes marquee {
            from {
                      transform: translateX(0);
            }
            to { 
                      transform: translateX(-100%);
              }
            }
            


            /* 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: 1000px) {
                #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;
                }
            }
            
            
        
/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/holidays/hol-4/hol325.cur), auto !important;} /* End https://www.cursors-4u.com */
