/* FONT IMPORT */
@import url('https://fonts.cdnfonts.com/css/open-dyslexic');

  
/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #ffffff;
  --content-background-color: #ffffff;
  --sidebar-background-color: #ffffff;


  /* Other Settings: */
  --margin: 0px;
  --padding: 10px;
  --border: 2px solid #ff75eb;
  --round-borders: 0px;
  --sidebar-width: 240px;
}


@font-face {
  font-family: 'rain-kiss';
  src: url('https://dl.dropbox.com/s/9gt2ntgclqn5zq4/Rain%20Kiss.ttf');
}

/* Create a reusable class for the font */
.rain-kiss {
  font-family: 'rain-kiss', sans-serif; /* fallback in case font doesn't load */
  font-size: 24px; /* adjust size as needed */
}

.pink { color: #e508b8; }
.blue { color: #770366; }
.green { color: green; }



@font-face {
src: url(https://dl.dropbox.com/s/1479f8x52y3z5u4/rainyhearts.ttf);
font-family: hearts;
}
 
.hearts {
font-family:'hearts';
}

/* Song link default and hover */
.heart-row a.hearts-link-blue {
  font-family: 'hearts';
  color: #770366; /* default blue */
  text-decoration: none;
}

.heart-row a.hearts-link-blue:hover {
  color: #e508b8; /* hover pink */
}

.heart-row a.hearts-link-pink {
  font-family: 'hearts';
  color: #e508b8; /* default blue */
  text-decoration: none;
}

.heart-row a.hearts-link-pink:hover {
  color: #770366; /* hover pink */
}

/* Pixel image glow on hover */
.heart-row a img:hover {
  filter: brightness(1.2);
}

.special-row > *:first-child {
  margin-left: 30px;
}

.special-row > *:nth-child(2){
  margin-left: 30px;
}

.special-row > *:last-child {
  margin-bottom: 0px;
}



/* -------------------------------------------------------- */
/* BASICS */
/* -------------------------------------------------------- */

* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 0;
  padding: var(--margin);
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background: var(--background-color);
  background-image: url("https://pockymon.neocities.org/kpoppage/pink135.jpg");
  cursor: url('https://pockymon.neocities.org/skz.png'), auto;
}

::selection {
  /* (Text highlighted by the user) */
  background: rgba(0, 0, 0, 0.2);
}

mark {
  /* Text highlighted by using the <mark> element */
  text-shadow: 1px 1px 4px var(--link-color);
  background-color: inherit;
  color: var(--text-color);
}

/* Links: */
a {
  text-decoration: underline;
}

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
}

/* -------------------------------------------------------- */
/* LAYOUT */
/* -------------------------------------------------------- */

.layout {
  max-width: 1250px;
  width: 100%;
  display: grid;
  grid-gap: var(--margin);
  grid-template: "header header" auto "leftSidebar main" auto "footer footer" auto / var(--sidebar-width) auto;
  /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
  padding: 20px;
}

main {
  grid-area: main;
  overflow-y: auto;
  overflow-x: hidden;
  padding: var(--padding);
  background: var(--content-background-color);
  border: var(--border);
  border-radius: var(--round-borders);
}


/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */

header {
grid-area: header;
display: flex;
align-items: flex-end;   /* pushes content toward bottom */
justify-content: center; /* keeps it centered horizontally */
position: relative;
font-size: 1.2em;
border: none;
border-radius: var(--round-borders);
overflow: visible;
background: transparent;
background-position: top left;
height: 100px;
padding-bottom: 10px; /* optional – adds breathing room */

}

.header-content {
  padding: var(--padding);
}

.header-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: #e101c8;
  font-family: var(--heading-font);
  font-size: 2em;
  font-weight: bold;
  pointer-events: none;
}

.header-icon {
  width: auto;
  height: auto;
  display: block;
  border: none;      /* remove any default borders */
  margin: 0;         /* remove spacing around image */
  padding: 0;        /* remove padding */
}

/* -------------------------------------------------------- */
/* SIDEBARS */
/* -------------------------------------------------------- */

aside {
  grid-area: aside;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  background: var(--sidebar-background-color);
  padding: var(--padding);
  color: var(--sidebar-text-color);
}

.left-sidebar {
  grid-area: leftSidebar;
  flex-direction: column;  /* Stack items vertically */
  align-items: center;     /* Center items horizontally */
  text-align: center;      /* Center text inside child elements */
  
}

.left-sidebar > * {
  width: auto;         /* Don't let child stretch full width */
  max-width: 100%;     /* Prevent overflow */
}

.right-sidebar {
  grid-area: rightSidebar;
}

.sidebar-title {
  font-weight: bold;
  font-size: 1.2em;
  font-family: var(--heading-font);
}

.sidebar-section:not(:last-child) {
  margin-bottom: 3em;
}


.sidebar-section > *:not(p):not(ul):not(ol):not(blockquote) {
  margin-top: 10px;
}

/* Sidebar Blockquote: */

.sidebar-section blockquote {
  background: rgba(0, 0, 0, 0.1);
  margin: 1em 0;
  border-radius: 10px;
  overflow: hidden;
}

.sidebar-section blockquote > *:first-child {
  margin-top: 0;
}

.sidebar-section blockquote > *:last-child {
  margin-bottom: 0;
}

/* Site Button: */

.site-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-button textarea {
  font-family: monospace;
  font-size: 0.7em;
}

/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */


footer {
  grid-area: footer;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  font-size: 0.75em;
  padding: 15px 0; /* vertical padding, horizontal spacing handled by marquee */
  
  /* Background image */
  background-image: url('https://pockymon.neocities.org/kpoppage/pink152.gif');
  background-repeat: repeat;
  background-position: top left;

  /* Flex layout for marquee */
  display: flex;
  justify-content: center;
  align-items: center;  /* vertically center the marquee */
}


footer a,
footer a:visited {
  color: var(--link-color);
}

footer a:hover,
footer a:focus {
  color: var(--link-color-hover);
}

.marquee img {
  margin: 0 10px;      /* spacing between images */
  vertical-align: middle;
  height: 50px;        /* adjust as needed */
  width: 120px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.marquee {
   display: flex;
   flex-flow: row nowrap;
   justify-content: end;
}

.marquee-content {
   animation: marquee 6s 0s linear normal infinite;
   position: relative;
   display: inline-block;
}

.marquee2 img {
  margin: 0 10px;      /* spacing between images */
  vertical-align: middle;
  height: 80;        /* adjust as needed */
  width: 120px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.marquee2 {
   display: flex;
   flex-flow: row nowrap;
   justify-content: end;
}

.marquee2-content {
   animation: marquee 6s 0s linear normal infinite;
   position: relative;
   display: inline-block;
}


@keyframes marquee {
   0% {
      right: -1rem;
      transform: translate(100%, 0%);
   }
   100% {
      right: calc(100% + 1rem);
      transform: translate(0%, 0%);
   }
}


/* -------------------------------------------------------- */
/* SCROLLBOXES */
/* -------------------------------------------------------- */

.floated-text {
        float: right; 
}

.box01 {
    background:#fff;
    border:1px dotted #fed9f5;
    border-radius:10px;
    margin:10px 0;
    width:100%;
    height:auto;
    overflow-x: hidden;
    overflow-y: auto;
}

.box1-inner {
    background:#fff;
    margin:-10px;
    padding:20px;
    display: flex;
    width: 100%;
}

.box1-inner img {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.box02 {
    border: 1px dotted #fed9f5;
    border-radius: 10px;
    width: 260px;
    height: 368px;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex; /* so inner can stretch */
    margin-left: 2.5px;
}

.box2-inner {
    flex: 1; /* fill parent */
    width: 100%;
    height: 100%;
    background-image: url("https://pockymon.neocities.org/blinkies&buttons/NAjqqeT.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    line-height: 1;
    padding: 0; /* remove padding if you want full coverage */
    margin: 0;  /* remove negative margins */
    padding-left: 25px; 
}

.box2-inner > *:first-child {
  margin-top: 80px; /* space only above the first element */
}

.box2-inner p, 
.box2-inner h1, 
.box2-inner h2, 
.box2-inner h3, 
.box2-inner div { /* or use * for all children */
  margin: 0; /* remove default margins */
}


.box2-inner img {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.box03 {
    background:#fff;
    border:1px dotted #fed9f5;
    border-radius:10px;
    margin:0px 0;
    text-align:center;
    width: 1250px;
}

.box3-inner {
    background-image:url(https://pockymon.neocities.org/blinkies&buttons/mushroombowBG.gif);
    background-repeat: repeat; 
    background-position: center; 
    background-size: auto 100%;  
    margin:-20px;
    padding:30px;
    width: 100%;
    height: 100%
    
}

.box3-inner img {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}


.box4 {
    border:1px dotted #fed9f5;
    border-radius:10px;
    margin:10px 0;
    text-align:center;
    width:260px;
    height:200px;
    overflow-x: hidden;
    overflow-y: auto;
    margin-left: 2px;
}

.box4-inner {
    background:#fff;
    margin:-10px;
    margin-bottom: 10px;
    padding:30px;
    display: flex; 
        flex-direction: column;
     justify-content: center;
        align-items: center;
        gap: 10px;
        
}

.box04-inner img {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}


.box5 {
  flex: 1;                 /* fills all available vertical space in column */
  width: 100%;             /* fills column horizontally */
  min-width: 0;            /* prevents content from stretching it */
  height: 200px;
 overflow-x: hidden;
    overflow-y: auto;
  border: 1px dotted #fed9f5;
  border-radius: 10px;
  box-sizing: border-box;
}

.box5-inner {
  width: 100%;          /* fill the scrollbox */
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.box5-inner img {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.box5-inner .rain-kiss.pink {
  text-align: center; /* keeps the title centered */
  display: block;     /* make sure it’s treated as a block */
  margin-bottom: 10px;
}

.box5-inner .task-row {
  display: flex;       /* flex for icon + text */
  align-items: center; /* vertical alignment */
  gap: 5px;
  margin-bottom: 10px;
  font-family: 'hearts';
  text-align: left;    /* left-align text inside row */
}

.box8 {
  width: 100%;
  height: 400px;        /* fixed height */
  overflow-y: auto;     /* vertical scroll if needed */
  overflow-x: hidden;   /* hide horizontal scroll */
  border: 1px dotted #fed9f5;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 0;           /* remove padding from outer box */
}

.box8-inner {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* optional, top-align content */
  align-items: flex-start;     /* left-align task rows */
}

.box8-inner .rain-kiss.pink {
  width: 100%;
  text-align: center;   /* keep title centered */
  margin-bottom: 10px;
}

.task-row {
  display: flex;
  align-items: center;  /* vertically center icon + text */
  gap: 5px;
  text-align: left;
  font-family: 'hearts';
  margin-bottom: 10px;
}

.task-row img {
  display: block;
}


.box06 {
border: 1px dotted #fed9f5;
width:260px;
    height:200px;
    border-radius:10px;
    margin:10px 0;
    margin-left:2px;
}

.box6-inner {
    flex: 1; /* fill parent */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    line-height: 1;
    padding: 0; /* remove padding if you want full coverage */
    margin: 0;  /* remove negative margins */
    padding-left: 10px; 
}

.box6-inner > *:first-child {
  margin-top: 10px; /* space only above the first element */
}

box6-inner img {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.scrollbox-text {
  text-align: center; /* only affects this element */
  margin: 0 auto;
}

/* SCROLLBARS ONLY FOR .box01 and .box4 */
.box5::-webkit-scrollbar,
.box8::-webkit-scrollbar,
.box4::-webkit-scrollbar {
  width: 16px;
}

.box5::-webkit-scrollbar:horizontal,
.box8::-webkit-scrollbar:horizontal,
.box4::-webkit-scrollbar:horizontal {
  height: 17px;
}

.box8::-webkit-scrollbar-corner,
.box5::-webkit-scrollbar-corner,
.box4::-webkit-scrollbar-corner {
  background: #eee;
}

.box5::-webkit-scrollbar-track:vertical,
.box8::-webkit-scrollbar-track:vertical,
.box4::-webkit-scrollbar-track:vertical {
  background: linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
}

.box5::-webkit-scrollbar-track:horizontal,
.box8::-webkit-scrollbar-track:horizontal,
.box4::-webkit-scrollbar-track:horizontal {
  background: linear-gradient(180deg, #e5e5e5, #f0f0f0 20%);
}

.box5::-webkit-scrollbar-thumb,
.box8::-webkit-scrollbar-thumb,
.box4::-webkit-scrollbar-thumb {
  border: 1.5px solid #888;
  border-radius: 3px;
  box-shadow: inset 0 -1px 1px #fff, inset 0 1px 1px #fff;
  background-color: #eee;
}

.box5::-webkit-scrollbar-thumb:vertical,
.box8::-webkit-scrollbar-thumb:vertical,
.box4::-webkit-scrollbar-thumb:vertical {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAKCAIAAADpZ+PpAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAADrSURBVChTTc5LboJQGAXguyoCu4ERCzAGlRk7UOwGWIDh0s4M4kxb06RSq/jAB6AxJkJ4lTDrue3AnvyzP+fLId+/yfM8juP7PQmCCOf7B3e+ZD+O40RRVFW12VQUpd3r9U3T2m4OpKoqWZYNwzBZLEqfh0N7NnvfrPcEWlEUWZb9mWF4Ph6D0ylcLbfM5HkeJrhGA2hb15/QXnv+w7RYXsDatjOdvnmrHSnLEizMNE2v11sUXQBCnn98kbquBUGQJAlmq9WB2e3qg4HJdqKkaRql1HGc0WgMcDJ5dd0F24kediZJ8t/ELT69H+8py0CYSIO5AAAAAElFTkSuQmCC") no-repeat 50%, linear-gradient(90deg, #eee 45%, #ddd 0, #bbb);
}

.box5::-webkit-scrollbar-thumb:horizontal,
.box8::-webkit-scrollbar-thumb:horizontal,
.box4::-webkit-scrollbar-thumb:horizontal {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAJCAYAAAALpr0TAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAADcSURBVChTNZBLqoUwEEQrURQUxZGCvy24ACfiityJi7tv8GauQoPxk5tquA2RQ9vVVYk6z9NZaxFFEe77htYazjk8z4MwDIVZ+rourOuKaZrwvi+WZcE8z1BKCbPPCjk4DAO2bRP1OI7wLiL6Mbd7J408z1GWpQwWRYGqqiQG+03TgMu0MacfUN4qANmn8UOv9MjW3sKaSm7iIdOSlziOQ3LScd93aPonSYK6riVLlmVo21aYfVqzND9pmqLrOlGT+76XbcxLZkb19/l3fEP+oF0cx8KMEASBsDEGX2/CgZCHkg+8AAAAAElFTkSuQmCC") no-repeat 50%, linear-gradient(180deg, #eee 45%, #ddd 0, #bbb);
}

.box8::-webkit-scrollbar-button:horizontal:end:increment,
.box4::-webkit-scrollbar-button:horizontal:end:increment,
.box5::-webkit-scrollbar-button:horizontal:end:increment,
.box8::-webkit-scrollbar-button:horizontal:start:decrement,
.box4::-webkit-scrollbar-button:horizontal:start:decrement,
.box5::-webkit-scrollbar-button:horizontal:start:decrement,
.box8::-webkit-scrollbar-button:vertical:end:increment,
.box4::-webkit-scrollbar-button:vertical:end:increment,
.box5::-webkit-scrollbar-button:vertical:end:increment,
.box8::-webkit-scrollbar-button:vertical:end:decrement,
.box4::-webkit-scrollbar-button:vertical:end:decrement,
.box5::-webkit-scrollbar-button:vertical:end:decrement,
.box8::-webkit-scrollbar-button:vertical:start:decrement,
.box5::-webkit-scrollbar-button:vertical:start:decrement,
.box4::-webkit-scrollbar-button:vertical:start:decrement {
  display: block;
}




/* -------------------------------------------------------- */
/* NAVIGATION */
/* -------------------------------------------------------- */
/* -------------------------------------------------------- */
/* NAVIGATION */
/* -------------------------------------------------------- */

/* ------------------ NAV CONTAINER ------------------ */
/* ------------------ NAV CONTAINER ------------------ */
nav {
  padding: 0;
  font-family: sans-serif;
}

nav ul, nav ul ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li > strong.title,
nav ul li > span.title {
  color: #ffb3e0;
  margin-bottom: 3px;
}

/* ------------------ LINKS ------------------ */
nav ul li > a {
  display: inline-block;
  text-decoration: none;
  color: #b1e2ff;
  font-family: 'hearts';
  transition: color 0.2s, background 0.2s; /* optional smooth hover */
}

/* Hover effect only on links */
nav ul li > a:hover,
nav ul li > details > ul li > a:hover {
  color: #fff;                  /* text color on hover */
  /* optional: background-color: #0077cc; */
}

/* ------------------ STRONG (stay static) ------------------ */
nav ul li > strong {
  display: inline-block;
  color: #770366;
  font-family: 'hearts';
}

/* ------------------ SUBMENU (DETAILS + SUMMARY) ------------------ */
nav ul li > details {
  margin: 0;
  padding: 0;
  color: #770366;
  font-family: 'hearts';
}

/* Submenu title (summary) stays static */
nav ul li > details > summary {
  display: block;
  cursor: pointer;
  font-weight: bold;
  list-style: none;
  margin: 0;
  color: #770366;
  font-family: 'hearts';
}

/* Remove default disclosure triangle / marker */
/* Chrome, Safari, Edge */
nav ul li > details > summary::-webkit-details-marker {
  display: none;
}

/* Firefox */
nav ul li > details > summary::marker {
  content: none;
}

/* ------------------ NESTED SUBMENU ITEMS ------------------ */
nav ul li > details > ul {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}

nav ul li > details > ul li > a {
  display: block;
  padding: 0.5em 1em;
  color: #770366;
  font-family: 'hearts';
}

/* Hover effect only on nested links */
nav ul li > details > ul li > a:hover {
  color: #ffb3e0;
  /* optional: background-color: #0077cc; */
}

/* Nested strong stays static */
nav ul li > details > ul li > strong {
  display: block;
  color: #e508b8;
  font-family: 'hearts';
}


/* -------------------------------------------------------- */
/* CONTENT */
/* -------------------------------------------------------- */

main {
  line-height: 1.5;
}

main a,
main a:visited {
  color: var(--link-color);
}

main a:hover,
main a:focus {
  color: var(--link-color-hover);
  text-decoration-style: wavy;
}

main p,
main .image,
main .full-width-image,
main .two-columns2,
main .two-columns {
  margin: 0.75em 0;
}

main ol,
main ul {
  margin: 0.5em 0;
  padding-left: 1.5em;
}

main ol li,
main ul li {
  margin-bottom: 0.2em;
  line-height: 1.3;
}

main ol {
  padding-left: 2em;
}

main blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
}

main pre {
  margin: 1em 0 1.5em;
}

main code {
  text-transform: none;
}

main center {
  margin: 1em 0;
  padding: 0 1em;
}

main hr {
  border: 0;
  border-top: var(--border);
  margin: 1.5em 0;
}

/* HEADINGS: */

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--heading-font);
  margin-bottom: 0;
  line-height: 1.5;
}

main h1:first-child,
main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child,
main h6:first-child {
  margin-top: 0;
}

main h1 {
  font-size: 1.5em;
}

main h2 {
  font-size: 1.4em;
}

main h3 {
  font-size: 1.3em;
}

main h4 {
  font-size: 1.2em;
}

main h5 {
  font-size: 1.1em;
}

main h6 {
  font-size: 1em;
}

/* COLUMNS: */

.two-columns {
  display: flex;
  align-items: flex-end;
}

.column {
  flex: 1;                 /* take available space */
  display: flex;
  flex-direction: column;
}

.column2 {
  flex: 1;                 /* take available space */
  display: flex;
  flex-direction: column;
}

.column img {
  display: inline-block;        /* or block */
  border-style: solid;          /* REQUIRED for border-image */
  border-width: 12px;           /* width of your border */
  border-image: url("https://dl.dropbox.com/scl/fi/6wo0voidugxmgg0a81v20/lace-border-png-37013.png?rlkey=3hn4k762e8y0v6d2v6mwrtcbr&st=5o8bpex4") 60 round; 
  flex-shrink: 0;               /* prevent flex from squishing the image */
  height: 300px;
  width: auto;
}


 .column-left {
    flex: 0 0 200px; /* fixed 200px width */
  padding-left: 30px;
  padding-right: 30px;
  }

.column-right {
     flex: 0 0 200px; /* fixed 200px width */
}

.two-columns2 {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  height: 200px;
  gap: 5px;
}

/* -------------------------------------------------------- */
/* CONTENT IMAGES */
/* -------------------------------------------------------- */

.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.img-infinitebouncehover {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  height: 110px;
  width: 110px;
}

.img-infinitebouncehover:hover {
  -webkit-animation-name: bounces;
  animation-name: bounces;
}

@-webkit-keyframes bounces {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounces {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}     
    

.full-width-image2 {
  display: block;
  width: 100%;
  margin: 0;
  height: auto;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}


.images {
  display: flex;
  width: calc(100% + 5px + 5px);
  margin-left: -5px;
  margin-right: -5px;
    border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.images img {
  width: 100%;
  height: auto;
  padding: 5px;
  margin: 0;
  overflow: hidden;
}

.small-img {
  display: flex;
  width: auto;
  height: 80px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.medium-img {
  display: block;
  width: 50%;
  height: 50%;
  margin-top: 10px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.right-sidebar-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  margin-left: 10px;
}

.pixel-img {
  width: 20px; /* adjust as needed */
  height: 20px; /* keeps aspect ratio */
}

.pixel-img2 {
  width: 23px; /* adjust as needed */
  height: 23px; /* keeps aspect ratio */
  margin-right: 10px;
}

.over {
background: #FE82B624;
-webkit-mask-image: url(https://i.imgur.com/1PjqQS6.png);
-webkit-mask-size: 200%;
-webkit-mask-repeat: no-repeat;
-webkit-mask-position: center;
 
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY */
/* -------------------------------------------------------- */

/* please do not remove this. */

#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
  transform: translateY(0);
}

/* -------------------------------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------------------------------- */

/* CSS Code for devices < 800px */
@media (max-width: 800px) {
  body {
    font-size: 14px;
  }

  .layout {
    width: 100%;
    grid-template: "header" auto  "leftSidebar" auto "main" auto "footer" auto / 1fr;
    /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
  }

  
  .right-sidebar { 
    display: none;
  }

  aside {
    border-bottom: 1px solid;
    padding: 9px;
    font-size: 0.9em;
  }

  
  nav {
    padding: 0;
  }

  nav > ul {
    padding-top: 0.5em;
  }

  nav > ul li > a,
  nav > ul li > details summary,
  nav > ul li > strong {
    padding: 0.5em;
  }

  main {
    max-height: none;
    padding: 15px;
  }

  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 100%;
  }

  #skip-to-content-link {
    font-size: 1rem;
  }
  
  /* ---------- IMAGE RESET (put this at the VERY END of your CSS) ---------- */

/* reset everything that can look like a border on images */
img {
  background-clip: padding-box !important;
  display: block;              /* prevents inline gaps */
  max-width: 100%;
}

/* make sure common image wrappers don't add visible borders */


/* If you want some images to KEEP borders, opt-in via .bordered */
}




