/*SIMPS WALL SIMPS WALL WOOHOOOO*/

body {
    font-family: 'rainyhearts', sans-serif;
    margin: 0;
    background-color: #08031A;
    /* you can delete the line below if you'd prefer to not use an image */
    background-size: 500px;
    color: #fceaff; 
    background-image: var(--body-bg-image);
    background-color: #000000;
    font-size:20px;
    
}

/*DA FLEX*/

#flex {
    display: flex;
}

.flex {
    display: flex;
    justify-content: center;
}


.line1 {
    font-family: 'rainyhearts';
    background-image: linear-gradient(25deg, rgb(107, 160, 165), rgb(234, 176, 91), rgb(224, 76, 102, 0.80));
    text-align: left;
    padding: 5px;
    color: #ffffff;
    font-size: 30px;
    border: 2px solid #b19570;
}

.box-top {
    background-color: #080808;
    border: 2px solid #b19570;
    border-color: #b19570;
    padding: 15px;
    width:40%;
    max-width: 100%;
    margin:40px;
    border-radius: 0px;
    position: center;
    overflow: auto;
}


.box {
    background-color: #080808;
    border: 2px solid #b19570;
    border-color: #b19570;
    padding: 15px;
    width:70%;
    max-width: 100%;
    border-radius: 0px;
    position: center;
    overflow: auto;
    margin-top:40px;
}

.box2 {
   border: 2px solid #ED64F5;
    border-color: #ffcb81;
    padding: auto; 
    background-image: url(https://goats-and-dragons.neocities.org/gifs_stams_blinks/shootingstarsky.gif);
    position: center;
    border-radius: 10px;
    margin-bottom: 20px; 
    overflow: auto;
    white-space: normal;
}

.char {
    border-radius: 30px;
    border: none;
    margin-right: 5px;
    width: 150px;
    height: 150px;
}  


/* navigation section!! */
#navbar {
    height: 30px;
    background-color: #080808;
    /* navbar color */
    width: 10%;
    border-radius: 15px;
    outline: 5px;
    outline-color: #ffcb81;
    border: 2px solid #b19570;
    margin:40px;
}

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

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

/* navigation links*/
#navbar li a {
    color: #ED64F5;
    /* 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: #ffcb81;
           
}

#flex {
    display: flex;
}


/*Fonts and stuff */

@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;
}
@font-face {
  font-family: "KiwiSoda";
  src: url("https://goats-and-dragons.neocities.org/KiwiSoda.ttf");
}
@font-face {
  font-family: "rainyhearts";
  src: url("https://goats-and-dragons.neocities.org/rainyhearts.ttf");
}

h1,h2,h4,h5 {
    color: #ffcb81;
    text-align: center;
    font-family: KiwiSoda;
    
}

h1 {
    font-size: 35px;
}
h2 {
   font-size:22px;
}  
h5 {
  font-size: 20px;
}

strong {
    /* this styles bold text */
    color: #ED64F5;
}


    /* width */
    ::-webkit-scrollbar {
      width: 10px;
      height: 10px;
      }

    /* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}
 
    /* Handle */
   ::-webkit-scrollbar-thumb {
   background: #ffffff; 
   border-radius: 10px;
}

   /* Handle on hover */
   ::-webkit-scrollbar-thumb:hover {
  background: #ffcb81; 
}


/*da root*/

:root {
    
    --body-bg-image: url('https://goats-and-dragons.neocities.org/fav-chara/imgs_simp/bg.jpg');
    background-position: center;
    background-repeat:repeat;
    background-size: cover;
    background-size:100%;
    position: sticky;
	 
    --stargif-image: url("https://i.postimg.cc/L8kFpCQZ/starsswitchy.gif");
    --content: #ffcb81;
    }

/* 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: 1000px;
    /* 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 */
}



/* 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: 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;
    }

    #leftSidebar1 {
        order: 2;
    }

    #rightSidebar1 {
        order: 3;
    }

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


