<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Page</title>
    <link href="/style3.css" rel="stylesheet" type="text/css" media="all">
  </head>
  <body>

<script type="text/javascript">
// <![CDATA[
var colour="random"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
var sparkles=50;

/****************************
*  Tinkerbell Magic Sparkle *
*(c)2005-13 mf2fm web-design*
*  http://www.mf2fm.com/rv  *
* DON'T EDIT BELOW THIS BOX *
****************************/
var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();

window.onload=function() { if (document.getElementById) {
  var i, rats, rlef, rdow;
  for (var i=0; i<sparkles; i++) {
    var rats=createDiv(3, 3);
    rats.style.visibility="hidden";
    rats.style.zIndex="999";
    document.body.appendChild(tiny[i]=rats);
    starv[i]=0;
    tinyv[i]=0;
    var rats=createDiv(5, 5);
    rats.style.backgroundColor="transparent";
    rats.style.visibility="hidden";
    rats.style.zIndex="999";
    var rlef=createDiv(1, 5);
    var rdow=createDiv(5, 1);
    rats.appendChild(rlef);
    rats.appendChild(rdow);
    rlef.style.top="2px";
    rlef.style.left="0px";
    rdow.style.top="0px";
    rdow.style.left="2px";
    document.body.appendChild(star[i]=rats);
  }
  set_width();
  sparkle();
}}

function sparkle() {
  var c;
  if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
    ox=x;
    oy=y;
    for (c=0; c<sparkles; c++) if (!starv[c]) {
      star[c].style.left=(starx[c]=x)+"px";
      star[c].style.top=(stary[c]=y+1)+"px";
      star[c].style.clip="rect(0px, 5px, 5px, 0px)";
      star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
      star[c].style.visibility="visible";
      starv[c]=50;
      break;
    }
  }
  for (c=0; c<sparkles; c++) {
    if (starv[c]) update_star(c);
    if (tinyv[c]) update_tiny(c);
  }
  setTimeout("sparkle()", 40);
}

function update_star(i) {
  if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  if (starv[i]) {
    stary[i]+=1+Math.random()*3;
    starx[i]+=(i%5-2)/5;
    if (stary[i]<shigh+sdown) {
      star[i].style.top=stary[i]+"px";
      star[i].style.left=starx[i]+"px";
    }
    else {
      star[i].style.visibility="hidden";
      starv[i]=0;
      return;
    }
  }
  else {
    tinyv[i]=50;
    tiny[i].style.top=(tinyy[i]=stary[i])+"px";
    tiny[i].style.left=(tinyx[i]=starx[i])+"px";
    tiny[i].style.width="2px";
    tiny[i].style.height="2px";
    tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
    star[i].style.visibility="hidden";
    tiny[i].style.visibility="visible"
  }
}

function update_tiny(i) {
  if (--tinyv[i]==25) {
    tiny[i].style.width="1px";
    tiny[i].style.height="1px";
  }
  if (tinyv[i]) {
    tinyy[i]+=1+Math.random()*3;
    tinyx[i]+=(i%5-2)/5;
    if (tinyy[i]<shigh+sdown) {
      tiny[i].style.top=tinyy[i]+"px";
      tiny[i].style.left=tinyx[i]+"px";
    }
    else {
      tiny[i].style.visibility="hidden";
      tinyv[i]=0;
      return;
    }
  }
  else tiny[i].style.visibility="hidden";
}

document.onmousemove=mouse;
function mouse(e) {
  if (e) {
    y=e.pageY;
    x=e.pageX;
  }
  else {
    set_scroll();
    y=event.y+sdown;
    x=event.x+sleft;
  }
}

window.onscroll=set_scroll;
function set_scroll() {
  if (typeof(self.pageYOffset)=='number') {
    sdown=self.pageYOffset;
    sleft=self.pageXOffset;
  }
  else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
    sdown=document.body.scrollTop;
    sleft=document.body.scrollLeft;
  }
  else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
    sleft=document.documentElement.scrollLeft;
    sdown=document.documentElement.scrollTop;
  }
  else {
    sdown=0;
    sleft=0;
  }
}

window.onresize=set_width;
function set_width() {
  var sw_min=999999;
  var sh_min=999999;
  if (document.documentElement && document.documentElement.clientWidth) {
    if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
    if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  }
  if (typeof(self.innerWidth)=='number' && self.innerWidth) {
    if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
    if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  }
  if (document.body.clientWidth) {
    if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
    if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  }
  if (sw_min==999999 || sh_min==999999) {
    sw_min=800;
    sh_min=600;
  }
  swide=sw_min;
  shigh=sh_min;
}

function createDiv(height, width) {
  var div=document.createElement("div");
  div.style.position="absolute";
  div.style.height=height+"px";
  div.style.width=width+"px";
  div.style.overflow="hidden";
  return (div);
}

function newColour() {
  var c=new Array();
  c[0]=255;
  c[1]=Math.floor(Math.random()*256);
  c[2]=Math.floor(Math.random()*(256-c[1]/2));
  c.sort(function(){return (0.5 - Math.random());});
  return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
}
// ]]>
</script>

  <body>
            <div id="headerArea">
 <div id="container"><div id="header" style="height: 263px;"></div>
            <div id="headerArea">
                
                
            <nav id="navbar" style="margin-bottom: 30px;"><ul>
               <a href="https://salviallemaxxing.neocities.org"><img src="https://cdn.corenexis.com/f/vc0upYlAfpX.png" style="max-width: 90%;"></a>
             <a href="https://salviallemaxxing.neocities.org/characters"><img src="https://cdn.corenexis.com/f/61XSezkZXhs.png" style="max-width: 90%;"></a>
                <a href="https://salviallemaxxing.neocities.org/gallery"><img src="https://cdn.corenexis.com/f/WcJWU5VT1vc.png" style="max-width: 90%;"></a>
               <a href="https://salviallemaxxing.neocities.org"><img src="https://cdn.corenexis.com/f/ZlwuM10Hg7o.png" style="max-width: 90%;"></a>
                <a href="https://salviallemaxxing.neocities.org"><img src=" https://cdn.corenexis.com/f/I823MrIOzKs.png" style="max-width: 90%;"></a>
               <a href="https://salviallemaxxing.neocities.org"><img src="https://cdn.corenexis.com/f/ZLPyxgaMpSf.png" style="max-width: 90%;"></a>
              
              </ul></nav></div>

            <div id="flex">
              
                <main>
               
                  
                   
                
                
                
                <ul style="padding-left:10px;">
                   
                    
              

                
              <img src="https://cdn.corenexis.com/f/0zvWwP4Nrg1.png" style="max-width: 60%;" "z-index: 2;">
              
              
<div id="box"style="max-width: 50%;">

  <style>
    #box {
  float: right;
}
      overflow: scroll;
      overflow-x: hidden;
      height: 10em;
      padding: 1rem;
      border: 3px solid;
      border-image-slice: 1;
      border-image-source: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
    }
  </style>
    Cupcake ipsum dolor sit amet. Carrot cake marzipan bonbon donut I love tiramisu jujubes muffin dessert. Tootsie roll toffee gingerbread gummies cupcake I love. Topping soufflé gummi bears I love cotton candy cupcake tootsie roll marzipan. Caramels pudding topping marzipan tootsie roll. Cupcake caramels caramels topping lemon drops. Caramels dessert gummies cotton candy shortbread I love gummies tart marshmallow. Caramels pie sugar plum sugar plum sweet. Apple pie cheesecake brownie soufflé tart cheesecake tootsie roll. Icing biscuit ice cream danish sesame snaps lollipop sugar plum tiramisu. Danish tiramisu I love muffin cheesecake cheesecake jujubes chocolate bar. Bear claw tart pudding brownie tart apple pie. Jelly-o chocolate bar biscuit bear claw carrot cake cookie chocolate. Topping brownie toffee marzipan candy chocolate bar cake jelly beans.
  </div>
  
  
       	<details>
		<summary><span style="background-color:#f08080;color:#FFFFFF;display:block;padding:12px;font-family:Georgia, serif;font-size:16px;font-weight:bold;border-radius:8px;text-align:left;"> MISC (click to expand) &nbsp; &nbsp;&nbsp;</span>
		</summary>


		<div style="background-color:#FFF0F2;border:1px solid #7D091A;padding:15px;border-radius:8px;font-family:'Courier New', Courier, serif;color:#7D091A;margin-top:8px;">

			<ul>
				<li style="margin-top:0px;margin-right:0px;margin-bottom:0px;text-align:left;color:rgb(61,142,185);font-family:'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Comic Neue', cursive, sans-serif;">Her favourite smoothie flavour is cherry.</li>
				<li style="margin-top:0px;margin-right:0px;margin-bottom:0px;text-align:left;color:rgb(61,142,185);font-family:'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Comic Neue', cursive, sans-serif;"><span style="color:rgb(235,107,86);">Even though she has a shit ton of different clothes, Gladys is rarely seen out of her work uniform</span>.</li>
				<li style="margin-top:0px;margin-right:0px;margin-bottom:0px;text-align:left;color:rgb(61,142,185);font-family:'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Comic Neue', cursive, sans-serif;">If labubus were a thing in the town shed own like five of them. dont even ask why.&nbsp;</li>
				<li style="margin-top:0px;margin-right:0px;margin-bottom:0px;text-align:left;color:rgb(235,107,86);font-family:'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Comic Neue', cursive, sans-serif;">Her hair is always tied in one long braid - but when it isnt, its really curly and puffed up.</li>
				<li style="margin-top:0px;margin-right:0px;margin-bottom:0px;text-align:left;color:rgb(61,142,185);font-family:'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', 'Comic Neue', cursive, sans-serif;">She doesnt care if it bores you, she WILL talk about random shit for hours on end.</li>
			</ul>
		</div>

	</details>
                </main>
                
            <aside id="rightSidebar"><img src="https://cdn.imageurlgenerator.com/uploads/3d71fbcb-c204-4971-b447-75d095139129.gif" style="max-width: 100%;">
            <div class="box">
                <p>Find our socials here!!!!</p>
                <ul style="padding-left:10px;">
                   <li><a href="https://artfight.net/~aceofaces131" target="_blank">Aces Artfight</a>
                    <li><a href="https://artfight.net/~Wtminjoentje" target="_blank">Soups Artfight</a>
              
      
                </ul>
            </div>
            <h2>HOOW DOES ONE MAKE A CHARACTER PAGE</h2>
            <h3>wip... ... ... .. </h3>
            <style>
            #musicplayer{
                font-family:'newscrash';/* default font */
                background:white; /* background color of player */
                border:4px solid #9acd32; /* border around player */
                width:100%; /* width of the player - make it 100% if you want it to fill your container */
                padding:10px;
                text-align:center; 
                display:flex;
                flex-direction:column;
                gap:10px;
            }
 
            .songtitle, .track-info, .now-playing{
                padding:5px;
            }
 
            .controls{
                display:flex; 
                flex-direction:column; 
                gap:10px;
            }
 
            .buttons{
                display:flex;
                justify-content:center;
                font-size:17px !important; /* size of controls */
                width:100%;
            }
 
            .buttons div{
                width:33.3%;
            }
 
            .playpause-track, .prev-track, .next-track{
                color:#e25098; /* color of buttons */
                font-size:35px !important; /* size of buttons */
            }
 
            .volume-icon{
                font-size:22px !important; /* size of volume icon */
            }
 
            .seeking, .volume{
                display:flex;
                flex-direction:row;
                align-items:center;
                gap:5px;
            }
 
            .now-playing, .track-info{
                background-color:#d1e189; /* background color of top two boxes */
            }
 
            .now-playing{
                font-weight:bold;
            }
 
            input[type=range]{
                -webkit-appearance:none; /* removes default appearance of the tracks */
                width:100%;
            }
 
            input[type=range]:focus{
                outline:none; /* removes outline around tracks when focusing */
            }
 
            input[type=range]::-webkit-slider-runnable-track{
                width:100%;
                height:4px; /* thickness of seeking track */
                background:#e25098; /* color of seeking track */
            }
 
            input[type=range]::-webkit-slider-thumb{
                height:10px; /* height of seeking square */
                width:10px; /* width of seeking square */
                border-radius:5px; /* change to 5px if you want a circle seeker */
                background:#e25098; /* color of seeker square */
                -webkit-appearance:none;
                margin-top:-3px; /* fixes the weird margin around the seeker square in chrome */
            }
 
            input[type=range]::-moz-range-track{
                width:100%;
                height:4px; /* thickness of seeking track */
                background:#e25098; /* color of seeking track */
            }
 
            input[type=range]::-moz-range-thumb{
                height:10px; /* height of seeking square */
                width:10px; /* width of seeking square */
                border-radius:0px; /* change to 5px if you want a circle seeker */
                background:#e25098; /* color of seeker square */
                border:none; /* removes weird border around seeker square in firefox */
            }
        </style>
    </head>
    <body>
        <div id="musicplayer">
            <div class="now-playing">Playing 1 of 2</div>
 
            <div class="track-info">
                <div class="track-name">Song Name</div>
                <div class="track-artist"></div>
            </div>
 
            <div class="controls">
                <div class="seeking">
                    <div class="current-time">00:00</div>
 
                    <input type="range" min="1" max="100" value="0" class="seek_slider" onchange="seekTo()">
 
                    <div class="total-duration">0:00</div>
                </div>
 
                <div class="buttons">
                    <div class="prev-track" onclick="prevTrack()">&#171;</div>
 
                    <div class="playpause-track" onclick="playpauseTrack()">&#9654;</div>
 
                    <div class="next-track" onclick="nextTrack()">&#187;</div>
                </div>
 
                <div class="volume">
                    <div class="volume-icon">&#128362;</div>
                    <input type="range" min="1" max="100" value="25" class="volume_slider" onchange="setVolume()"> <!-- the default volume value is 25, change this if you want it to be higher or lower (i wouldn't recommend it bc it gets really loud) -->
                </div>
            </div>
 
            <audio id="music" src=""></audio>
        </div>
 
        <script>
            // initiate variables
            let now_playing = document.querySelector(".now-playing");
            let track_name = document.querySelector(".track-name");
            let track_artist = document.querySelector(".track-artist");
 
 
            let playpause_btn = document.querySelector(".playpause-track");
            let next_btn = document.querySelector(".next-track");
            let prev_btn = document.querySelector(".prev-track");
 
            let seek_slider = document.querySelector(".seek_slider");
            let volume_slider = document.querySelector(".volume_slider");
            let curr_time = document.querySelector(".current-time");
            let total_duration = document.querySelector(".total-duration");
 
            let track_index = 0;
            let isPlaying = false;
            let updateTimer;
 
            // create new audio element
            let curr_track = document.getElementById("music");
 
            //
            // DEFINE YOUR SONGS HERE!!!!!
            // MORE THAN FOUR SONGS CAN BE ADDED!!
            // JUST ADD ANOTHER BRACKET WITH NAME ARTIST AND PATH
            // CATBOX.MOE IS RECOMMENDED FOR UPLOADING MP3 FILES IF YOU DON'T HAVE NEOCITIES SUPPORTER
            let track_list = [
                {
                    name:"girl u want",
                    artist:"devo",
                    path:"https://files.catbox.moe/epkxof.mp3"
                },
                {
                    name:"lust for a vampyr",
                    artist:"imonster",
                    path:"https://files.catbox.moe/hearh7.mp3"
                },
                {
                    name:"why cant i be you?",
                    artist:"the cure",
                    path:"https://files.catbox.moe/kfia1r.mp3"
                },
                {
                    name: "baby oh no",
                    artist:"bow wow wow",
                    path:"https://files.catbox.moe/svu7u0.mp3"
                },
                { 
                    name: "outside world",
                    artist:"xtc",
                    path:"https://files.catbox.moe/1qguqx.mp3"
                },
                {
                    name: "you cant hurry love",
                    artist:"the supremes",
                    path:"https://files.catbox.moe/mhsrhi.mp3"
                },
                { 
                    name: "dumb waiters",
                    artist:"the psychedelic furs",
                    path:"https://files.catbox.moe/ltpu2s.mp3"
                },
                { 
                    name: "love comes quickly",
                    artist:"pet shop boys",
                    path:"https://files.catbox.moe/yrusc0.mp3"
                },
            ];
            //
            //
            //
            //
            //
 
            function loadTrack(track_index){
                clearInterval(updateTimer);
                resetValues();
 
                // load a new track
                curr_track.src = track_list[track_index].path;
                curr_track.load();
 
                // update details of the track
                track_name.textContent = track_list[track_index].name;
                track_artist.textContent = track_list[track_index].artist;
                now_playing.textContent = "Playing " + (track_index + 1) + " of " + track_list.length;
 
                // set an interval of 1000 milliseconds for updating the seek slider
                updateTimer = setInterval(seekUpdate, 1000);
 
                // move to the next track if the current one finishes playing 
                curr_track.addEventListener("ended", nextTrack);
 
            }
 
            // reset values
            function resetValues(){
                curr_time.textContent = "0:00";
                total_duration.textContent = "0:00";
                seek_slider.value = 0;
            }
 
            // load the first track in the tracklist
            loadTrack(track_index);
 
            // checks if song is playing
            function playpauseTrack(){
                if (!isPlaying) playTrack();
                else pauseTrack();
            }
 
            // plays track when play button is pressed
            function playTrack(){
                curr_track.play();
                isPlaying = true;
 
                // replace icon with the pause icon
                playpause_btn.innerHTML = '&#9646;';
            }
 
            // pauses track when pause button is pressed
            function pauseTrack(){
                curr_track.pause();
                isPlaying = false;
 
                playpause_btn.innerHTML = '&#9654;';
            }
 
            // moves to the next track
            function nextTrack(){
                if (track_index < track_list.length - 1)
                    track_index += 1;
                else track_index = 0;
                loadTrack(track_index);
                playTrack();
            }
 
            // moves to the previous track
            function prevTrack(){
                if (track_index > 0)
                    track_index -= 1;
                else track_index = track_list.length;
                loadTrack(track_index);
                playTrack();
            }
 
            // seeker slider
            function seekTo(){
                seekto = curr_track.duration * (seek_slider.value / 100);
                curr_track.currentTime = seekto;
            }
 
            // volume slider
            function setVolume(){
                curr_track.volume = volume_slider.value / 100;
            }
 
            setVolume();
 
            function seekUpdate(){
                let seekPosition = 0;
 
                // check if the current track duration is a legible number
                if (!isNaN(curr_track.duration)){
                    seekPosition = curr_track.currentTime * (100 / curr_track.duration);
                    seek_slider.value = seekPosition;
 
                    // calculate the time left and the total duration
                    let currentMinutes = Math.floor(curr_track.currentTime / 60);
                    let currentSeconds = Math.floor(curr_track.currentTime - currentMinutes * 60);
                    let durationMinutes = Math.floor(curr_track.duration / 60);
                    let durationSeconds = Math.floor(curr_track.duration - durationMinutes * 60);
 
                    // adding a zero to the single digit time values
                    if (currentSeconds < 10){ currentSeconds = "0" + currentSeconds; }
                    if (durationSeconds < 10){ durationSeconds = "0" + durationSeconds; }
                    if (currentMinutes < 10){ currentMinutes = currentMinutes; }
                    if (durationMinutes < 10){ durationMinutes = durationMinutes; }
 
                    curr_time.textContent = currentMinutes + ":" + currentSeconds;
                    total_duration.textContent = durationMinutes + ":" + durationSeconds;
                }
            }
        </script> 
        <img src="https://64.media.tumblr.com/c6049874d6eda1d8bd69da7ff1bf4b67/b633c28a874dcc10-76/s250x400/b62e73eb234f21a9c530576f8558866722ed5a86.gifv" style="max-width: 100%;">
        <img src="https://artwork.neocities.org/photos/blinkies/2692813snywoa45nk.gif">
        <img src="https://pixelsafari.neocities.org/blinkies/bighug.gif" style="max-width: 100%;">
        <img src="https://salviallemaxxing.neocities.org/blinkiesCafe-au.gif" style="max-width: 100%;">
         <img src="https://64.media.tumblr.com/a8aade7ec313bea9973d74547fd744fa/b633c28a874dcc10-3d/s250x400/739d3ed6b8222c5b7394de5aee5a489f1f5311b9.gifv" style="max-width: 100%;">
          <img src="https://pixelsafari.neocities.org/blinkies/cherry.png" style="max-width: 100%;">
          <img src="https://artwork.neocities.org/photos/summer/tumblr_bcf1a260ed7e06660c2fce3a4c9ffbf4_cee39ac5_250.gif" style="max-width: 100%;">
          <img src="https://images-ext-1.discordapp.net/external/IKeXTumx_noMPUyIuLclzgnKdhqlNYCWkw-uorGKPRU/https/64.media.tumblr.com/f0df3a4720259f557cbf110fbd0f252c/e80b2c130bb4958d-d6/s250x400/acd998b09c58a4bfd07efec386a8bdcc80e5c892.gifv" style="max-width: 100%;">
          
        

                    </ul>
                </aside>
          
            <ul>
                
            </ul></aside></div>
            
        <footer id="footer" style="margin-top: 10px;"></footer></div>
        <!-- THIS IS THE CSS !-->
        <style>
            /* 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://salviallemaxxing.neocities.org/IMG_9416.gif');
                --body-bg-image: url('https://i.pinimg.com/1200x/25/aa/1a/25aa1a16b78d63f639b04b8427d4f2d6.jpg';style="max-width: 100%;">)
/* ignore the link for the pin img ouuuhh can you tell soup wrote this?
                /* colors */
                --content: #ffffff;
            }

            /* 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:Newscrash;
                src: url('https://salviallemaxxing.neocities.org/Newscrash.otf');
            }

            @font-face {
                font-family:AlteHaasGrotesk;
                src: url('https://salviallemaxxing.neocities.org/AlteHaasGroteskBold.ttf');
                font-weight: bold;
            }

            @font-face {
                font-family:AlteHaasGrotesk;
                src: url(https://salviallemaxxing.neocities.org/AlteHaasGroteskRegular.ttf');
                
            }

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
                font-style: italic;
                font-weight: bold;
            }

            body {
                font-family: 'AlteHaasGrotesk', sans-serif;
                margin: 0;
                background-color: #ffffff;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 65px;
                color: #0067a5;
                background-image: var(--body-bg-image);
            }

            * {
                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: 900px;
                /* 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: #c32148;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

            #header {
                width: 100%;
                background-color: #ffffff;
                /* header color here! */
                height: 150px;
                /* this is only for a background image! */
                /* 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%;
            }

            /* navigation section!! */
            #navbar {
                height: 60px;
                background-color: #87cefa;
                /* navbar color */
                width: 100%;
            }

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

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

            /* navigation links*/
            #navbar li a {
                color: #ff7f50;
                /* 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: #dc143c;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #f08080;
                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 {
                background-color: #e7feff;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            /* 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 {
                background-color: #add8e6;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }

            h1,
            h2,
            h3 {
                color: #fffacd;
            }

            h1 {
                font-size: 25px;
            }

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

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #ffffff;
                border: 5px solid #a3e3ed;
                padding: 10px;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }

* {
  cursor: url('https://cdn.cursors-4u.net/previews/rainbow-ca3a9a9a-32.webp') 32 32, auto !important;
}
            /* 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;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }
        </style>
</body>

</html>

  </body>
</html>