/* don't bother with the vars */

:root {
    --header-image: url("https://i.imgur.com/inGebaT.png");
    --body-bg-image: url("https://i.imgur.com/46uKKqj.jpg");

    /* colors */
    --content: #431c87;
}

/* custom font */

@font-face {
    font-family: disposabledroid;
    src: url("https://williamaftussy.neocities.org/fonts/disposabledroid-REG.ttf");
}

@font-face {
    font-family: disposabledroid;
    src: url("https://williamaftussy.neocities.org/fonts/disposabledroid-B.ttf");
    font-weight: bold;
}

@font-face {
    font-family: disposabledroid;
    src: url("https://williamaftussy.neocities.org/fonts/disposabledroid-I.ttf");
    font-style: italic;
}

@font-face {
    font-family: disposabledroid;
    src: url("https://williamaftussy.neocities.org/fonts/disposabledroid-BI.ttf");
    font-style: italic;
    font-weight: bold;
}

body {
    font-family: "disposabledroid", sans-serif;
    margin: 0;
    background-color: #08031a;
    /* you can delete the line below if you'd prefer to not use an image */
    background-size: 65px;
    color: #fceaff;
    background-image: url(https://i.imgur.com/5r0msgu.gif);
}

* {
    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: 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 */
}

/* the area below is for all links on your page
    EXCEPT for the navigation */
#container a {
    color: #d695f2;
    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: #000000;
    /* 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: url(https://i.imgur.com/inGebaT.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
}

/* navigation section!! */
#navbar {
    height: 40px;
    background-color: #01054c;
    /* 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: #d695f2;
    /* 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: #1d1c7a;
    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: #431c87;
    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: #01054c;
    /* background color for footer */
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
    /* this centers the footer text */
    color: #d695f2;
}

h1,
h2,
h3,
h4,
u {
    color: #d695f2;
}

h1 {
    font-size: 25px;
}

strong {
    /* this styles bold text */
    color: #d695f2;
}
iframe {
    border: 1px solid #d695f2;
}
ul {
    list-style-image: url("https://i.imgur.com/KDtD162.gif");
}
ul ul {
  list-style-type: none;
   margin-left: -20px;
}

ul ul li:before {
  content: "↳"; /* Replace with desired arrow character or image */
  margin-right: 5px; /* Adjust spacing as needed */
}

 /* the dropdown thingy */
.accordion {
  background-color: #01054c;
  color: #fceaff;
  cursor: pointer;
  padding: 5px 5px 5px 15px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #020664;
}

/* accordion panel */
.panel {
  padding: 0 18px;
  background-color: #1d1c7a;
  display: none;
  overflow: hidden;
} 

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #d695f2;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* this is just a cool box, it's the darker colored one */
.box {
    background-color: #01054c;
    border: 1px solid #d695f2;
    padding: 10px;
    line-height: 2;
}
.scrollbox {
    background-color: #01054c;
    border: 1px solid #d695f2;
    padding: 5px;
    overflow-y: auto;
    max-height: 150px;
    flex-grow: 1;
}
.bigscrollbox {
    background-color: #01054c;
    border: 1px solid #d695f2;
    padding: 5px;
    overflow-y: auto;
    max-height: 400px;
    flex-grow: 1;
}
.scrollcontainer {
    width: 100%;
    margin-right: 5px; /* adjust the value as needed */
}
.updatebox {
    background-color: #01054c;
    border: 1px solid #d695f2;
    padding: 5px;
    overflow-y: auto;
    max-height: 250px;
}
.sitebox {
    background-color: #01054c;
    border: 1px solid #d695f2;
    padding: 5px 5px 5px 15px;
    overflow-y: auto;
    max-height: 300px;
}
.willbox {
    background-color: #01054c;
    border: 1px solid #d695f2;
    padding: 5px;
    overflow-y: auto;
    max-height: 300px;
    flex-grow: 1;
}
.petcontainer {
    position: relative;
}
#gifypet {
    float: left;
    margin-right: 20px;
}
/* various images that go behind paragraph text */
.silly {
    background-image: url("https://i.imgur.com/SIegkfB.gif");
    background-size: 20%;
    background-position: right;
    background-repeat: no-repeat;
    background-clip: padding-box;
    padding-bottom: 20px;
}
.silly2 {
    background-image: url("https://i.imgur.com/fCJygAB.gif");
    background-size: 25%;
    background-position: left;
    background-repeat: no-repeat;
    background-clip: padding-box;
    padding-bottom: 10px;
    text-align: right;
}
.sillyabout {
    background-image: url("https://i.imgur.com/V3mRRu0.gif");
    background-size: 20%;
    background-position: right;
    background-repeat: no-repeat;
    background-clip: padding-box;
}
.sillyabout2 {
    background-image: url("https://i.imgur.com/xO3sPHZ.gif");
    background-size: 20%;
    background-position: left;
    background-repeat: no-repeat;
    background-clip: padding-box;
    text-align: right;
}
/* column box */
.colbox {
  display: flex; /* or display: grid; */
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
}

.column {
  flex: 1; /* or grid-column: 1; */
}

/* blinking text */
@keyframes blink {
  0% { color: #d695f2; }
  50% { color: #ffcc00; }
  100% { color: #d695f2; }
}
.blinking {
  animation: blink 1s infinite;
}

/* chatbox styling */
#cent {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.holder {
    width: 100%;
    height: 330px;
    position: relative;
}
.bar {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 200px;
    background-image: url("https://i.imgur.com/9iQ8Y9s.gif");
    background-size: cover;
}

/* For the art page */
.artrow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap; 
  flex-wrap: wrap;
  padding: 0 4px;
}

.artcolumn {
  -ms-flex: 25%; 
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.artcolumn img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* CSS for extras */

#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #01054c;
}

table {
    border: 1px;
    border-color: #d695f2;
    border-collapse: collapse;
    width: 90%;
}

td {
    padding: 5px;
    border: 1px solid;
    border-color: #d695f2;
    text-align: left;
}

th {
    padding: 5px;
    border: 1px solid;
    border-color: #d695f2;
}

#text {
    text-align: left;
}

tr:nth-child(odd) {
    background-color: #01054c;
}

/* DRAGGABLE DIV BOX */
#boxheader {
    text-align: left;
    color: #fceaff;
    font-family: disposabledroid;
    padding-left: 5px;
    background: #01054c;
    height: 18px;
    border: 1px inset black;
}

#boxheader:hover {
    cursor: move;
}

#box {
    position: absolute;
}
.borderwrap {
    border: 5px solid #1d1c7a;
}
.wrapper-in {
    background: #1d1c7a;
    border: 4px inset #191868;
}
.wrapper-in img {
    vertical-align: top;
}
.padding {
    padding: 5px;
}

.gallery {
    top: 190px;
    right: 100px;
    width: 300px;
}
.gallery .wrapper-in {
    height: 400px;
    overflow-y: auto;
    overflow-x: hide;
    text-align: center;
    /* white-space:nowrap; */
}
.gallery .wrapper-in img {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    width: 100%; /* Adjust the width as needed */
}

.collection {
    top: 190px;
    left: 50px;
    width: 400px;
}
.collection .wrapper-in {
    height: 400px;
    overflow-y: auto;
    overflow-x: hide;
    text-align: center;
    /* white-space:nowrap; */
}
.collection .wrapper-in img {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    width: 100%; /* Adjust the width as needed */
}

.collection .wrapper-in .blinkie {
  width: 175px; /* set the desired width for image 1 */
}

.collection .wrapper-in .stamp {
  width: 100px; /* set the desired width for image 2 */
}

.mobiledisplay {
        display: none;
}

/* javascript gallery css */
.imggallery-container {
    background-color: #01054c;
    border: 1px solid #d695f2;
    padding: 10px;
    line-height: 2;
    background-image: url(https://i.imgur.com/gGEooiz.gif), url(https://i.imgur.com/sA1AEC2.gif), url(https://i.imgur.com/vORhFxg.gif);
    background-repeat: no-repeat;
    background-position: center, top right, left;
    background-size: 100%, 40%, 40%;
    max-width: 90%;
}

.button-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.imggallery {
    display: flex;
    justify-content: center;
    align-items: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: 300px;
  height: 300px;
}

.imggallery img {
  display: none;
  max-width: 50%;
  max-height: 50%;
  width: auto;
  height: auto;
}

.imggallery img.current {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

#prevBtn,
#nextBtn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

#prevBtn {
  left: 0;
}

#nextBtn {
  right: 0;
}

/* car animation lol */
.sliding-background {
  background: url("https://i.imgur.com/szMZ13F.gif") repeat-x;
  height: 124px;
  width: 380px;
  animation: slide 4s linear infinite;
}

@keyframes slide{
  0% {
    transform: translate3d(1692px, 0, 0);
  }
  100% {
    transform: translate3d(-1692px, 0, 0);
  }
}

.deco{
	z-index:999;
	position:absolute;
 transform: translate(-50%, -50%);
 -ms-transform: translate(-50%, -50%);}

.border1{
filter: drop-shadow(2px 0px 0px white) drop-shadow(0px 2px 0px white) drop-shadow(-2px 0px 9px white) drop-shadow(0px -2px 0px white) drop-shadow(1px 0px 0 black) drop-shadow(0px 1px 0 black) drop-shadow(1px -1px 0 black) drop-shadow(-1px 1px 0 black) ;
}

/* comment box html */

#HCB_comment_box {
    font-family: "disposabledroid", sans-serif;
    color: #d695f2;
}
#HCB_comment_box p.error {
    border: 1px solid red;
    background-color: #01054c;
}
.hcb-mod b {
    color: #FFC854;
}
  #HCB_comment_box #hcb_form_content,
  #HCB_comment_box #hcb_form_email,
  #HCB_comment_box #hcb_form_name,
  #HCB_comment_box #hcb_form_website {
    background-color:#01054c;
    border: 1px solid #d695f2;
    color: #d695f2;
  }
#HCB_comment_box .hcb-wrapper-half {
    display: block;
    width: 50%;
    float: left;
}
#HCB_comment_box .hcb-wrapper {
    clear: both;
}

#HCB_comment_box #hcb_form .btn, #HCB_comment_box #HCB_comment_form_box .btn {
    border: 1px solid #d695f2;
    background-color: #01054c;
}

#HCB_comment_box input.text {
    display: block;
    width: 97%;
}
#HCB_comment_box input.submit {
    border-top: 1px solid #d695f2;
    border-left: 1px solid #d695f2;
    border-bottom: 1px solid #d695f2;
    border-right: 1px solid #d695f2;
    background-color: #01054c;
    color: black;
    font-weight: 700;
    cursor: pointer;
}
#HCB_comment_box span.home-desc {
    font-size: 10px;
    opacity: 0.4;
}
#HCB_comment_box div.comment {
    border-bottom: 1px dotted #d695f2;
    margin-bottom: 5px;
}
.hcb-mod i {
    color: #00008b;
}

#HCB_comment_box label {
    color: #d695f2;
}

#HCB_comment_box #hcb_form #hcb_settings {
    color: #d695f2;
}

#HCB_comment_box .date {
    color: #d695f2;
}

/* status cafe! */
#statuscafe {
    padding: .5em;
    background-color: #01054c;
    border: 1px solid #d695f2;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}

/* image enlarging */

.enlarge-image {
  height: auto; /* Maintain aspect ratio */
  transition: transform 0.3s ease;
}

.enlarge-image:hover {
  transform: scale(1.2); /* Increase scale to make the image bigger */
}

/* 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 screen and (max-width: 900px) {
  .artcolumn {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .artcolumn {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}

@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;
    }
    .gallery {
        display: none;
    }
    .collection {
        display: none;
    }
    .mobiledisplay {
        display: flex;
    }
    .column {
    flex: 1 0 100%;
  }
}