/* 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('https://sadhost.neocities.org/images/layouts/wp.jpeg');
    --body-bg-image: url('https://sadhost.neocities.org/images/tiles/purplesky.gif');

    /* colors */
    --content: #43256E;
}

/* if you have the URL of a font, you can set it below */
/* feel free to delete this if it's not your vibe */

/* this seems like a lot for just one font and I would have to agree 
    but I wanted to include an example of how to include a custom font.
    If you download a font file you can upload it onto your Neocities
    and then link it! Many fonts have separate files for each style
    (bold, italic, etc. T_T) which is why there are so many!
    
    */
@font-face {
    font-family: Open Sans;
    src: url('/_fonts/OpenSans-VariableFont_wdth,wght.ttf');
}

@font-face {
    font-family: Quicksand;
    src: url('/_fonts/Quicksand-VariableFont_wght.ttf');
    font-style: italic;
    font-weight: bold;
}


body {
    font-family: 'Open Sans', sans-serif;
    font-size: .95em;
    margin: 0;
    padding: 0;
    /* you can delete the line below if you'd prefer to not use an image */
    color: #fceaff;
    /*THIS IS THE TEXT COLOR! STOP FUCKING DELETING IT*/
    background-color: #7924e3;
    background: url('https://orion-overdrive.neocities.org/_img/grid-square.png'), linear-gradient(#fcde45 3.125%, #e712dd 28%, #7924e3 53%, #57fde5 78%, #8cff3f 100%);
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: auto;
    overflow-y: hidden;
}

html, body {
    height: 100%;
    min-height: 100%;
}

#scrollable {
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  overflow-x:none;
  overflow-y:scroll;
  scrollbar-color: #e712dd black;
  scrollbar-width: thin;
  padding:10px;
}

* {
    box-sizing: border-box;
}

/* below this line is CSS for the layout */

/* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */


/* 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: 75%;
    /* 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 */
}


#flex {
    display: flex;
    height:100vh;
}

/* this colors BOTH sidebars
    if you want to style them separately,
    create styles fr #leftSidebar and #rightSidebar */
aside {
    width: 25%;
}


/* ------------------------------ SPLASH IMAGE ------------------------------ */

#splashbox {
    display: inline-flex;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-color: black;
    background: url(https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Pillars_of_creation_2014_HST_WFC3-UVIS_full-res_denoised.jpg/800px-Pillars_of_creation_2014_HST_WFC3-UVIS_full-res_denoised.jpg);
    background-size: cover;
    background-position: center;
    flex-direction:column;
    justify-content:flex-end;
}

/* ------------------------------ LINKS ------------------------------ */

#link-box {
    border: none;
    color: white;
    z-index: 99999999999999999999999999999999999999999999999999999;
    height:100%;
    width: 100% !important;
    display: flex;
    justify-content:flex-end;
    flex-direction: column;
    text-transform: lowercase;
}

#link-box a {
    font-family: 'Quicksand';
    background: black;
    font-size: 1em;
    text-decoration: none;
    padding: 7.5px;
    border: none;
    margin-bottom: 7.5px;
    text-align: center;
    width: 100%;
    transition: .5s;
}

#link-box span {
    text-decoration: bold;
    /* Fallback: Set a background color. */
    background-color: #7924e3;

    /* Create the gradient. */
    background-image: linear-gradient(90deg, #fcde45 3.125%, #e712dd 28%, #7924e3 53%, #57fde5 78%, #8cff3f 100%);

    /* Set the background size and repeat properties. */
    background-size: 100%;
    background-repeat: repeat;

    /* Use the text as a mask for the background. */
    /* This will show the gradient as a text color rather than element bg. */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;

}

#link-box a:first-of-type {
    margin-top: 15px;
}

#link-box a:last-of-type {
    margin-bottom: 7.5px;
}

#link-box a:hover {
    cursor: pointer;
    font-size: 1.5em;
    letter-spacing: 3px;
    color: #7924e3;
    background-color: #270b4a;
    text-decoration:underline;
}


/* this is the color of the main content area,
    between the sidebars! */

main {
    background-color: rgba(0, 0, 0, .75);
    flex: 1;
    padding: 10px 20px;
    order: 2;
    text-transform: lowercase;
    border-radius: 0 5px 5px 0;
      overflow-x:none;
  overflow-y:scroll;
  scrollbar-color: #e712dd black;
  scrollbar-width: thin;
}

/* ------------------------------ EVERYTHING ELSE ------------------------------ */

a {
  font-family: Quicksand;
  color: #fcde45;
  font-weight: 800;
  transition: 0.3s;
  /* if you want to remove the underline
    you can add a line below here that says:
    text-decoration:none; */
}

/* the area below is for all links on your page
  EXCEPT for the navigation */
a:hover {
  color: #7924e3;
  /* if you want to remove the underline
    you can add a line below here that says:
    text-decoration:none; */
}

#wiggle span, #wiggle2 span, #wiggleside span{
  animation-delay: var(--n);
  animation: wave 1.5s linear var(--n) infinite forwards running;
  position: relative;
}

@keyframes wave{
  0% {top: 0px;}
  25% {top: -4px;}
  50% {top: 0px;}
  75% {top: 4px;}
  100% {top: 0px;}
}

p {
  text-indent: 50px;
}

h1, h2, h3 {
  font-family: Quicksand;
  /* Fallback: Set a background color. */
  background-color: #fcde45;

  /* Create the gradient. */
  background-image: linear-gradient(90deg, #fcde45 3.125%, #e712dd 28%, #7924e3 53%, #57fde5 78%, #8cff3f 100%);

  /* Set the background size and repeat properties. */
  background-size: 100%;
  background-repeat: repeat;

  /* Use the text as a mask for the background. */
  /* This will show the gradient as a text color rather than element bg. */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

h1 {
  font-size: 175%;
  text-align: right;
}

h2 {
  font-size: 150%;
  text-align: center;
}

h3 {
  font-size: 125%;
  text-align: left;
}

strong, b {
  /* this styles bold text */
  font-family: Quicksand;
  color: #8cff3f;
}

em, i {
  /* this styles bold text */
  color: #59EEFF;
}

hr {
  border: 0;
  height: 1.5px;
  background: #e712dd;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(90deg, transparent, #fcde45 3.125%, #e712dd 28%, #7924e3 53%, #57fde5 78%, #8cff3f 100%, transparent);
  /*For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(90deg, transparent, #fcde45 3.125%, #e712dd 28%, #7924e3 53%, #57fde5 78%, #8cff3f 100%, transparent);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(90deg, transparent, #fcde45 3.125%, #e712dd 28%, #7924e3 53%, #57fde5 78%, #8cff3f 100%, transparent);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(90deg, transparent, #fcde45 3.125%, #e712dd 28%, #7924e3 53%, #57fde5 78%, #8cff3f 100%, transparent);
  /* Standard syntax */
}

blockquote {
  padding-left: 10px;
  border-left: 1px solid #e712dd;
}

/* this is just a cool box, it's the darker colored one */
.box {
  margin:0 auto;
  background:rgba(0,0,0,.75);
  padding:20px;
  max-height: 300px;
  width:80%;
  overflow-y: auto;
  border:2px solid;
  border-image: linear-gradient(to bottom right, #fcde45 3.125%, #e712dd 28%, #7924e3 53%, #57fde5 78%, #8cff3f 100%);
  border-image-slice: 2;
  display:flex;
  font-size:90%;
}

.minibox {
    width:50%;
    box-sizing:border-box;
    padding:15px;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-color: #7924e3 transparent;
    scrollbar-width: thin;
}

.minibox p {
  text-indent:0px;
  margin: 7.5px 0;
}

.minibox ul, .minibox ol {
  margin:7.5px 0;
  padding-left: 25px;
}

/* 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) {

    #container{
        height: 100vh;
        max-width: 100vh;
    }

    main {
        height: 100vh;
    }

    /* 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;
    }
}