/* these are the main colors and header image
   replace them with anything you want! */
:root {
    --site-bg: url('images/space.jpg');
    --main-bg: url('images/nothing.png');
    --gradient-bg: linear-gradient(0deg, #0000 0%, #0E234350 33%, #193F7750 90%);
    --accent-color: rgb(130, 175, 238);
    --link-color: rgb(95, 112, 186);
    --bg-color: black;
    --text-color: rgb(162, 166, 228);
    --text-color2: white;
    --favorite-color: rgb(61, 74, 139);
}
/* this theme mostly uses default css colors, but you can get hex codes from sites like this:
   https://palettes.shecodes.io/
   i just looked up "css color templates" to find that link! */

/* this applies to all the content */
* {
    color: var(--text-color);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-shadow: 2px 2px 5px var(--bg-color);
/* custom scrollbars don't appear for all browsers, but i like setting them anyway */
    scrollbar-color: var(--favorite-color) var(--bg-color);
    scrollbar-width: thin;
}
/* this is for when you select text on the page */
::selection {
    background: var(--favorite-color);
    color: var(--bg-color);
}

html {scroll-behavior: smooth;}

body {
    margin: 0;
    background-color: var(--bg-color);
    background-image: var(--site-bg);
/* you can add a background-position if you don't want it to be top left! this one is set to not tile */
    background-repeat: no-repeat;
}
/* i think having better line spacing helps text to be more readable, but you can remove it if you want */
p {line-height: 1.5em;}

/* this is your site title displayed at the top of the page */
header > h1 {
    margin: 1em auto;
    max-width: 960px;
    padding-left: 1em;
/* you can change the text-align to center or right if you want it placed differently */
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.1em;
    transition: filter 100ms ease-in-out, color;
    transition: letter-spacing 400ms ease-in-out;
}

header > h1:hover {
    cursor: default;
    letter-spacing: 0.2em;
    color: transparent;
    background: linear-gradient(90deg,#fb5ffc, #00ffca, #9d00ff, #ffdd00, #fb5ffc);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
      animation: moveRainbow 3s linear infinite;
  /* filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.6))
          drop-shadow(0 0 30px rgba(157, 0, 255, 0.4)); */
}

@keyframes moveRainbow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}


nav {
    padding: 0 1em 1em 1em;
    font-weight: bold;
}

nav ul {
    max-width: 960px;
    margin: auto;
    line-height: 3rem;
/* this stuff makes it wrap around on mobile */
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
/* this line takes away the dot in front of the list items */
    list-style-type: none;
/* list items have default padding but we don't need it for these */
    padding-left: 0;
/* and this spaces out the buttons so they're not touching */
    justify-content: space-evenly;
}
nav li a {
    background-color: var(--bg-color);
    border: 1px solid var(--favorite-color);
    padding: .5em 3em;
/* this takes away the link underline */
    text-decoration: none;
/* and this part is animation! */
    transition: color 400ms ease-in-out, border-color 400ms ease-out;
}
nav li a:hover {
    border: 1px solid var(--accent-color);
    transition: box-shadow 400ms ease-in, 
}

a {
    color: var(--link-color);
    transition: color 400ms ease-out;
}
a:visited {
    color: var(--favorite-color);
}
a:hover {
    color: var(--text-color2);
}

#Sytrys {
    /*transition: color 275ms ease, text-shadow 0 0 10px #FF9066, 0 0 20px #FF9066, 0 0 40px #FF9066;*/
      text-shadow: 0 0 0px transparent;
      transition: color 275ms ease, text-shadow 275ms ease;
  }

#Sytrys:hover {
    color: #FF9066;
    text-shadow: 0 0 10px #FF9066, 0 0 20px #FF9066, 0 0 40px #FF9066;
  }
 .ncursor {
   cursor: default;
   }    
  
  #Radia {
    /*transition: color 275ms ease, text-shadow 0 0 10px #FF9066, 0 0 20px #FF9066, 0 0 40px #FF9066;*/
      text-shadow: 0 0 0px transparent;
      transition: color 275ms ease, text-shadow 275ms ease;
  }

#Radia:hover {
    color: #FFDF22;
    text-shadow: 0 0 10px #FFDF22, 0 0 20px #FFDF22, 0 0 40px #FFDF22;
  } 
  
/*#Radia {*/
/*transition: color 275ms ease, text-shadow 0 0 10px #FF9066, 0 0 20px #FF9066, 0 0 40px #FF9066;*/
/*text-shadow: 0 0 0px transparent;*/
/*transition: color 275ms ease, text-shadow 275ms ease;*/
/*}*/

/*#Radia:hover {*/
/*    color: #FFDF22;*/
/*    text-shadow: 0 0 10px #FFDF22, 0 0 20px #FFDF22, 0 0 40px #FFDF22;*/
/*  } */
  
#Purble {
    /*transition: color 275ms ease, text-shadow 0 0 10px #FF9066, 0 0 20px #FF9066, 0 0 40px #FF9066;*/
      text-shadow: 0 0 0px transparent;
      transition: color 275ms ease, text-shadow 275ms ease;
  }

#Purble:hover {
    color: #A020F0;
    text-shadow: 0 0 10px #A020F0, 0 0 20px #A020F0, 0 0 40px #A020F0;
  }  
  
  #Syyani {
    /*transition: color 275ms ease, text-shadow 0 0 10px #FF9066, 0 0 20px #FF9066, 0 0 40px #FF9066;*/
      text-shadow: 0 0 0px transparent;
      transition: color 275ms ease, text-shadow 275ms ease;
  }

#Syyani:hover {
    color: #40E0D0;
    text-shadow: 0 0 10px #40E0D0, 0 0 20px #40E0D0, 0 0 40px #40E0D0;
  }  
  
  
/*#wystielink {*/
/*    color: var(--text-color);*/
/*    text-decoration: none;*/
/*    text-shadow: 0 0 0px transparent;*/
/*    transition: color 275ms ease;*/
/*    cursor: default;*/
/*}*/

/*#wystielink:hover {*/
/*    color: #FB5FFC;*/
/*    animation: wystieFlicker 3s infinite alternate;*/
/*}*/

/*li:has(#wystielink:hover)::marker {*/
/*    color: #FB5FFC;*/
/*    animation: wystieFlicker 3s infinite alternate;*/
/*}*/




/*#wystielink:visited {*/
/*    text-decoration: none; */
/*}*/
/* Keyframes Syntax: Keyframes customNameHere{insert percentages where effect happens, then tell it which property it's doing. */

/*@keyframes wystieFlicker {*/
/*    0%, 1%, 3%, 10%, 19%, 21%, 23%, 25%, 34%, 54%, 56%, 97%, 100% {*/
/*      text-shadow: 0 0 10px #FB5FFC, 0 0 20px #FB5FFC, 0 0 40px #FB5FFC;*/
/*  }*/
/*  20%, 24%, 55%, 79%, 87%, 89%, 100% {*/
    /* Sudden drop to a weak, dull glow */
/*    text-shadow: */
/*      0 0 6px #FB5FFC, */
/*      0 0 12px #FB5FFC;*/
/*  }*/
/*}*/

li {
    list-style: none;
    position: relative;
}

li::before {
    content: "•";
    position: absolute;
    left: -1em;
    color: var(--text-color);
}

li:has(#wystielink:hover)::before {
    color: #FB5FFC;
    animation: wystieFlicker 3s infinite alternate;
}


  #wystielink {
    color: var(--text-color);
    text-decoration: none;
    text-shadow: 0 0 0px transparent;
    cursor: default;
}

#wystielink:hover {
    color: #FB5FFC;
    animation: wystieFlicker 3s infinite alternate;
}


#wystielink:visited {
    text-decoration: none;
}


/* Flickering glow */
@keyframes wystieFlicker {

    /* Start with NO glow */
    0% {
        text-shadow: 0 0 0px transparent;
    }

    /* Smoothly build to the full glow */
    10% {
        text-shadow:
            0 0 10px #FB5FFC,
            0 0 20px #FB5FFC,
            0 0 40px #FB5FFC;
    }

    /* Normal flickering */
    19%, 21%, 23%, 25%, 34%, 54%, 56%, 97%, 100% {
        text-shadow:
            0 0 10px #FB5FFC,
            0 0 20px #FB5FFC,
            0 0 40px #FB5FFC;
    }

    20%, 24%, 55%, 79%, 87%, 89% {
        text-shadow:
            0 0 6px #FB5FFC,
            0 0 12px #FB5FFC;
    }
}

  
  
/* you can change this to lots of things. i picked a star! */
ul { list-style-type: "✦ "; }

#sidebar {
    background-image: var(--main-bg);
    border: 1px solid var(--favorite-color);
    min-width: 220px;
}


#avatar {
/* image size is 160px so i made its container a little bigger to fit the borders */
    margin: 1em auto;
    max-width: 164px;
    max-height: 164px;
}
#avatar img {
    background: var(--bg-color);
    max-width: 160px;
    border: 1px solid var(--favorite-color);
    box-shadow: var(--accent-color) 0 0 4px;
}

#bio {
    font-size: smaller;
    margin: 1em;
    background: var(--bg-color);
    border: 1px solid var(--favorite-color);
    box-shadow: var(--accent-color) 0 0 4px;
}
#bio p {
    margin: 1em;
    color: var(--text-color2);
}

#content {
    display: flex;
    max-width: 960px;
    margin: auto;
}

main {
    background-image: var(--main-bg);
    background-repeat: repeat;
    image-rendering: pixelated;
    max-width: 800px;
    margin: auto;
    border: 1px solid darkslateblue;
    color: var(--accent-color);
    max-height: 600px;
    overflow:auto;
}

.prose {
/* i couldn't put padding on main without it cutting off the background, so the padding is here... sorry if this extra class is a little inconvenient */
    background: var(--gradient-bg);
    margin: 0;
    padding: 1em;
}

/* made this a class so i can change it to be centered on mobile */
.img-right { float: right; }

footer {
    text-align: center;
    font-size: small;
    padding: 1em;
}

/* these are the mobile styles! */
@media only screen and (max-width: 800px) {
    #content {
        flex-wrap: wrap;
    }
    #sidebar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding-top: 2em;
    }
    #avatar {margin: 0 1em;}
    #bio {width: 50%;}
    #sidebar ul {   
        margin: 0 1em;
        display: flex;
        flex-wrap: wrap;
        line-height: 2em;
        padding-left: 0;
    }
    #sidebar li {
        margin: .3em 1em;
    }
    main {
/* remove scrollbar for mobile */
        max-height: fit-content;
    }
    .img-right {
        float: none;
        text-align: center;
    }
}
/* below this is riley code */

#getsmaller {
    width: 250px;
    height: auto;
    margin-top: 75px;
}
/* Centers subhead 'nebeski' */
.subheadparent {
    text-align: center;
}

#subheadnebeski {
    display: inline-block;
    color: #fff;
    text-shadow: 0 0 20px #499ae9;
    transition: text-shadow 250ms ease-in-out, color 460ms ease-in-out;
}

#subheadnebeski:hover {
    text-shadow: 0 0 20px #499ae9, 0 0 30px #499ae9;
    cursor: default;
}

#subheadthesun {
    display: inline-block;
    color: #fff;
    text-shadow: 0 0 20px #e89024;
    transition: text-shadow 250ms ease-in-out, color 460ms ease-in-out;
}

#subheadthesun:hover {
    text-shadow: 0 0 20px #f90b2beb, 0 0 30px #e52a2a;
    cursor: default;
}

#subheadnebeski:active {
    text-shadow: 0 0 25px #499ae9, 0 0 40px #499ae9;
}



.tombuttonclass {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 27px;
}

#headnebeski {
    display: flex;
    text-align: center;
    justify-content: center;
}

.cute {
    color: var(--link-color);
    transition: color 400ms ease-out;
    text-decoration: underline;
}
.cute:visited {
    color: var(--favorite-color);
}
.cute:hover {
    color: var(--text-color2);
    cursor: default;
}




/* .cute:visited {
    color: var(--favorite-color);
}

.cute:hover {
    color: var(--text-color2);
    border-bottom-color: var(--link-color);
} */



/* .nav-nebutton    transition: background-color 400ms ease-in-out;
} */

/* .nav-nebuttonver {
    background-color: lightblue;
} */

    /* background-image: linear-gradient(to left bottom, #70b2db 70%, #C4CA4A);  
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; */


/* CSS */


/* .nebutton {
  align-items: center;
   background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
   display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
} 

.nebutton:active,
.nebutton:hover {
  outline: 0;
}

.nebutton span {
  background-color: rgb(5, 6, 45);
  padding: 16px 24px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;
}

.nebutton:hover span {
  background: none;
}

@media (min-width: 768px) {
  .nebutton {
    font-size: 24px;
    min-width: 196px;
  }
} 
   */