/* user styles */

            /* styles are what change the color and sizes of stuff on your site. */

            /* these are variables that are being used in the code
    these tended to confuse some people, so I only kept 
    the images as variables */

:root {
    --header-image: url('/imgs/kugumimilogo3.png');
    --body-bg-image: url('imgs/soft2.gif');
    --main-bg-image: solid #58475d);
    --cloud-left: url('imgs/cloudleft.png');
    --cloud-right:url('imgs/cloudright.png');
    /* colors */
    --content: #000000;
            }

@font-face {
                font-family: CutieQueues;
                src: url('/font/CutieQueues');
            }

@font-face {
                font-family: Dream Orphans;
                src: url('font/dream_orphans');
                font-weight: normal;
            }

@font-face {
                font-family: Linux Libertine;
                src: url('font/LinLibertine_R')
                font-weight: normal;
            }


body {
    font-family: 'Linux Libertine', serif;
    background-color: #ffffff;
    /* you can delete the line below if you'd prefer to not use an image */
    background-size: 100%;
    color: skyblue;
    background-image: var(--cloudwall);
    background-repeat: no-repeat;
            }

* {
    box-sizing: border-box;
            }


            /* 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: 1080px;
    /* 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: #531ce6;
    font-style:italic;
    font-weight:800;
    text-decoration: none;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

#header {
     width: 100%;
     background-color: none;
    /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
    background-image: var(--header-image);
    background-size: 100%;
    background-repeat:no-repeat;
 align-content: center;
            }

            /* navigation section!! */
#navbar {
                margin:5px;
                height: 43px;
                background-color: rgba(135, 82, 255, 0.34);
                border-radius: 45%;
                border: dotted 3px rgba(132, 14, 234, 0.7);
                /* navbar color */
                width: auto;
            }
    #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }
    #navbar li {
        margin: auto;
        padding-top: 10px;
            }
/* navigation links*/
    #navbar li a {
                color: rgb(255, 255, 255);
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            } 
 /* navigation link when a link is hovered over */
    #navbar li a:hover {
                color: #f783b8;
                text-decoration:underline
            }

#flex {
                display: flex;
            }

/* footer nav section!! */
#footernav {
    background-color: rgb(0, 0, 0);
    border-radius: 4%;
    border: 3px solid #000000;
    
    /* navbar color */
            }

    #footernav ul {
                display: flex;
                padding: 12px;
                margin: auto;
                list-style-type: none;
                justify-content: space-evenly;
                align-items:center;
            }
/* navigation links*/
    #footernav li a {
                color: rgb(255, 255, 255);
                /* navbar text color */
                font-weight: 100;
                font-size: 9pt;
                text-decoration: none;
                /* this removes the underline */
            }
/* navigation link when a link is hovered over */
    #footernav li a:hover {
                color: #f783b8;
                text-decoration:underline;
}


            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
aside {
                background-color: #241445;
                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 {
    margin-top: 30px;
    flex: 1;
    order: 2;
    
            }
#shell {
    width: 100%;
    height: 100%;
    background-color: salmon;
    /* if you want to put images IN the header, 
    you can add them directly to the <div id="header"></div> element! */
    background-image: var(--main-bg-image);
    background-size: 100%;
    background-repeat:no-repeat;
    margin: 10px;
    padding: 150px 0px 70px 10px;
    justify-items: center;
}

            /* 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;
            }*/

       
/* navbar color */
/* this centers the footer txt */
            }
/*#shell {
    margin: 20px;
    padding: 25px;
    justify-items: inherit;
    border: rgba(255, 255, 255, 0.24) ridge 4px;
    border-radius: 44%;
   
}*/



h1,
h2,
h3 {
                color: #125cff;
            }

h1 {
    font-family: 'CutieQueues';
    font-kerning: auto;
    font-size: 42pt;
    color: blueviolet;
    margin: 0;
            }
h2 {
    font-family: 'Dream Orphans';
    font-size: 20px;
    font-kerning: auto;
                

            }
    strong {
                /* this styles bold text */
                color: #0031ff;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #727272;
                border: 1px solid #ED64F5;
                padding: 10px;
            }

            /* CSS for extras */

#topBar {
width: 100%;
height: 30px;
padding: 10px;
font-size: smaller;
background-color: rgba(135, 82, 255, 0.44);
                
            }




/* 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: 980px) {
                #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;
                }
                #footer ul {
                    flex-wrap: wrap;
                }
            }



#tiny {
    width: auto;
    margin-top: 100px;
}

#prices {
    color:black;
    padding:20px;
    
}




#footer {
    font-size: 9pt;
    align-content: center;
    margin:12%;
}
