            :root {
                --body-bg-image: url('img/bobby/bg.jpg');

                /* 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: "F1529 Champ Fleury W01 Regular";
		src: url("https://db.onlinewebfonts.com/t/8b878294d7b9b47db6f27dc88b189731.eot");
		src: url("https://db.onlinewebfonts.com/t/8b878294d7b9b47db6f27dc88b189731.eot?#iefix")format("embedded-opentype"),
		url("https://db.onlinewebfonts.com/t/8b878294d7b9b47db6f27dc88b189731.woff2")format("woff2"),
		url("https://db.onlinewebfonts.com/t/8b878294d7b9b47db6f27dc88b189731.woff")format("woff"),
		url("https://db.onlinewebfonts.com/t/8b878294d7b9b47db6f27dc88b189731.ttf")format("truetype"),
		url("https://db.onlinewebfonts.com/t/8b878294d7b9b47db6f27dc88b189731.svg#F1529 Champ Fleury W01 Regular")format("svg");
	}

            body {
				height:970px;
                font-family: "F1529 Champ Fleury W01 Regular";
                margin: 0;
                /*! background-color: #08031A; */
                /* you can delete the line below if you'd prefer to not use an image */
                color: black;
                background-image: var(--body-bg-image);
                /*! overflow: hidden; */
            }

            * {
                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 {
                /*! width: 1419px; */
                /* 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 */
                position: absolute;
                top: 53%;
                left: 50%;
                transform: translate(-50%, -50%);
                /*! height: 90vh; */
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: black;
                /*! 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: #5e4e8c;
                /* 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: 40px;
                background-color: #13092D;
                /* 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: #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: #a49cba;
                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: #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 {
  width: 882px;
  height: 750px;
  /*! background-color: #F4F3EF; */
  /*! border-radius:10px; */
  /*! box-sizing: border-box; */
  /*! position: relative; */
  /*! z-index:5; */
  /*! box-shadow: 9.5px -3.1px 29px rgba(0, 0, 0, 0.39); */
/*! padding:10px; */
            }

            /* 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! */

.sidebarL, .sidebarR {
  /*! background-color: #f0f0f0; */ /* just for visibility */
  padding: 1rem;
  box-sizing: border-box;
}

.sidebarL {
	width: 268.5px;
}

.sidebarR {
	/*! width: 268.5px; */
}

            footer {
                background-color: #13092D;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }

            h1,
            h2,
            h3 {
                /*! color: #ED64F5; */
            }

            h1 {
                font-size: 25px;
            }

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

            /* this is just a cool box, it's the darker colored one */
            .box {
                /*! background-color: #13092D; */
                /*! border: 1px solid #ED64F5; */
                padding: 10px;
            }

            /* CSS for extras */

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


            /* 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
    */

.iframe-container {
    border: 16px solid transparent;
    border-image: url(img/vines2.png) 16 round;
    overflow: hidden; /* hides any tiny overflow */
    width: 100%;
    height: 100%;
    padding: 0; /* no padding to mess with sizing */
    box-sizing: border-box; /* ensures border is included in width */
    position: relative;
}


iframe {
border:none;
}


#side1 {
	position:absolute;
	top: -104px;
	left:-192px;
	z-index:6;
	pointer-events: none;
}

#side2 {
	position:absolute;
	top: 244px;
	left:13px;
	z-index:3;
	pointer-events: none;
}

#side3 {
	position:absolute;
	top: 313px;
	left:1131px;
	z-index:2;
	pointer-events: none;
}

#back {
	position:absolute;
	top: -56px;
	left:332px;
	z-index:2;
	pointer-events: none;
}

#bunny {
	position:absolute;
	top: -88px;
	left:728px;
	pointer-events: none;
}

#goose {
	position:absolute;
	top: 559px;
	left:-158px;
	pointer-events: none;
}

.contents {
	position: relative;
	z-index:7;
}

.image-row {
  display: flex;
  gap: 3px; /* space between buttons */
  justify-content: center;
}

.image-row img {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.image-row img:hover {
  transform: translateY(-5px);
}

#headerArea {
	position:absolute;
	left:300px;
	top: -118px;
}

.link-line {
  text-align: center;
  position:absolute;
  top:1034px;
  left:860px;
  z-index:8;
  font-size: 24px;
  color: white;
}

.link-line a {
  text-decoration: none;
  color: white;
  /*! font-weight: bold; */
  margin: 0 10px;
  position: relative;
  font-size: 24px;
}

.link-line a:hover {
    text-decoration: underline;
}

#hello {
	position:absolute;
	top:40px;
	left:40px;
	rotate:-3deg;
	width: 252px;
	font-size: 20px;
	line-height: 22px;
}

#SiteUpdates {
  position:absolute;
	top:269px;
	left:77px;
	width: 201px;
	font-size: 20px;
	line-height: 22px;
}

#updates {
  	height: 242px;
	overflow-y: scroll;
  	margin-top: -24px;
}

#wip {
  position:absolute;
	top:151px;
	left:124px;
	/*! width: 243px; */
	font-size: 20px;
	line-height: 26px;
}

.button:hover {
	transform: rotate(10deg);
}

.button {
	cursor:pointer;
}

#nametag {
	position:absolute;
	top:0;
	left:1158px;
}

#whobttn {
	position:absolute;
	top:392px;
	left:1032px;
}

#blogbttn {
	position:absolute;
	top:824px;
	left:1043px;
}

#gif1 {
  width: 433px;       /* Set desired crop width */
  height: 341px;      /* Set desired crop height */
  overflow: hidden;   /* This hides the parts of the image that spill out */
  position: absolute;
  top:18px;
  left:306px;
}

#gif1 img {
  position: absolute;
  top: 4px;         /* Adjust this to move the image and control the crop */
  left: -88px;
}

#gif2 {
  width: 433px;       /* Set desired crop width */
  height: 341px;      /* Set desired crop height */
  overflow: hidden;   /* This hides the parts of the image that spill out */
  position: absolute;
  top:389px;
  left:293px;
}

#gif2 img {
  position: absolute;
  top: 0px;         /* Adjust this to move the image and control the crop */
  left: -71px;
}

#gif3 {
  width: 433px;       /* Set desired crop width */
  height: 341px;      /* Set desired crop height */
  overflow: hidden;   /* This hides the parts of the image that spill out */
  position: relative;
  top:731px;
  left:293px;
}

#gif3 img {
  position: absolute;
  top: -1px;         /* Adjust this to move the image and control the crop */
  left: -10px;
}

#filmframe {
	position:absolute;
	top:0;
	left:0px;
	pointer-events: none;
}

#replacementContent {
	width:665px;
	height:829px;
	overflow-y:auto;
	position:absolute;
	top:31px;
	left:1054px;
	font-size: 20px;
	padding-bottom: 534px;
	padding-top: 88px;
}

.fancytext::first-letter {
	font-size:30px;
}

.hidden {
  display: none;
}

#paper {
	position:absolute;
	top:0;
	left:931px;
}

#whale {
	position:absolute;
	top: 331px;
	left: 852px;
	pointer-events: none;
}

#ily {
	position:absolute;
	top: 707px;
	left: 1182px;
	pointer-events: none;
}

#BBside {
	 width: 366px;
	height: 590px;
	background-image: url("img/bobby/window2.png");
	background-size: cover;
		position:absolute;
	top:490px;
	left:0px;
}

#BBside:hover {
	background-image: url("img/bobby/window1.png");
}

#BBsmile {
	 width: 774px;
	height: 769px;
	background-image: url("img/bobby/smile2.png");
	background-size: cover;
		position:absolute;
	top:311px;
	left:1390px;
}

#BBsmile:hover {
	background-image: url("img/bobby/smile1.png");
}

#backbttn {
	position:absolute;
	top:27px;
	left:1747px;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  min-height: 100vh; /* Allow growing taller */
  overflow-y: auto;
  overflow-x: hidden;
}

#scale-wrapper {
  width: 1920px;
  height: auto; /* Let it expand vertically */
  transform-origin: top left;
  position: absolute;
  top: 0;
  left: 0;
}
