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

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

  /* Text Colors: */
  --text-color: #000000;
  --sidebar-text-color: #000000;
  --link-color: #000000;
  --link-color-hover: #e75094;

  /* Text: */
  --font: Lucida Console, monospace;
  --heading-font: Lucida Console, monospace;
  --font-size: 14px;

  /* Other Settings: */
  --margin: 20px;
  --padding: 20px;
  --border: 2px dotted #C71585;
  --round-borders: 5px;
  --sidebar-width: 220px;
}

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

* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  padding: var(--margin);
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('greengingham.png');
  background-repeat: repeat;
  background-size: 380px 380px;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}


::selection {
  /* Text highlighted by the user */
background: rgba(144, 238, 144, 0.5);
  
}

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

@font-face {
  font-family: fakereceipt; /* We define a name for our font family */
  src: url(FakeReceipt.woff); /* we tell the browser where it is */
}

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

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

.profile-container {
  display: flex;
  justify-content: center;
}

.profile-left {
  border: 2px dotted #C71585;
  border-radius: var(--round-borders);
  padding: 25px;
  background: url('https://i.pinimg.com/736x/0e/31/55/0e3155aa8bdd9bcceb08296dfb863ae3.jpg') repeat-x;
  background-size: cover;
  max-width: 700px;
  width: 100%;
}

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

.profile-content {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.profile-info {
  flex: 1 1 160px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.4;
}

.profile-photo {
  flex: 1 1 180px;
  display: flex;
  justify-content: center;
  align-self: flex-start; /* aligns image to the top of the row */
  margin-top: -40px;
}

.profile-photo img {
  max-width: 350px;
  height: auto;
  border-radius: 12px;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background-size: 200px;
  background-repeat: repeat-x;
  border: var(--border);
  border-radius: var(--round-borders);
  background-image: url('https://i.pinimg.com/736x/7e/c9/55/7ec955d2330c46f37fb3fe606a41b37b.jpg');
  background-repeat: repeat;
  background-size: 130px 130px;
}

.marquee-content {
  display: inline-flex; /* <-- so text & image stay in line */
  align-items: center;
  gap: 13px;
  height: 75px;
  padding-left: 100%;
  padding-top: 5px;
  animation: marquee-loop 8s linear infinite;
}

.trailing-gif {
  height: 40px;
  vertical-align: middle;
}


@keyframes marquee-loop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.folder-title {
  font-weight: bold;
  font-size: 1.2em;
  font-family: "Margarine", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color: #C71585;
}

.folders-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0;
}

.folder {
  flex: 1;
  text-align: center;
  border: var(--border);
  border-radius: var(--round-borders);
  padding:20px;
}

.folder img {
  padding: 5px;
  max-width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.folder img:hover {
  transform: scale(1.05);
}

.folder p {
  font-family: "Margarine", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 10px;
  font-size: 1em;
  text-align: left;
}

.folder-1 {
  background-image: url('https://i.pinimg.com/736x/ad/45/96/ad4596929516811c9b9ad09c1f179124.jpg');
  background-repeat: repeat-x repeat-y;
  background-size: 100px;
}

.folder-2 {
  background-image: url('https://i.pinimg.com/736x/7b/9e/8a/7b9e8a064fe90c7d38e4b3d3b1764ee4.jpg');
  background-size: 250px;
}

.folder-3 {
  background-color: #f9ffe6; /* Light yellow-green */
}

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

.binder2 {
    border-image:  url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAqCAYAAADFw8lbAAAAAXNSR0IArs4c6QAAANhJREFUWEftmdENgCAMRGUA9h+UATQa60e16UUQijk+TJRKz0exDaTFaDnn1err+byUknZ/x+WphRcqAuVL9H1Pmrsv8X8jGl6oRS4cUQqtDOpbjJIoiZ6ZQEBw1YMhEX4x6Zm8MlO0Ve8K9WZEagDPrlW/OfWeg2FCdTmnhYwuUi6iFOrFENhPoiAo2Oz/RGEUjQxfE23kHx4mfK7X1VvYXD+NULco8VIoHFyVhtMInWbqKbQyJM3X+R9tTZZESdTbugm3pWMJplAwmM3DBk0WHO8zs+nOmTZbl4dGbSUApAAAAABJRU5ErkJggg==") 14 /  14px / 0 round;
    border-width:  14px;
    border-style:  solid;
}

.tamagotchi-left {
  position: fixed;
  top: -15px;
  left: 30px; 
  z-index: 9999;
  max-width: 100px;
  height: auto;
  transform: rotate(-10deg);
}

.windbell-fixed {
  right: 20px;
  max-width: 125px;
  height: auto;
  position: fixed;
  top: 0px;
  z-index: 9999;     
  margin: 0;        
  padding: 0;
}

header {
  grid-area: header;
  border: var(--border);
  font-size: 1em;
  border-radius: var(--round-borders);
  background-image: url('notebook.png');
  background-size: 105px;
  display: flex;
  padding-left: 20px;
  align-items: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--padding);
}

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

.titlelogo {
  width: 400px;
  height: auto;
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
}

.nav-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.nav-list li a:hover {
  color: #89A853; 
}

.lace-header {
  position: relative;
  background-color: white;
  padding: 40px;
  overflow: hidden;
}

.lace-header .header-content {
  position: relative;
  z-index: 1; 
}

/* Top & Bottom lace */
.lace-top,
.lace-bottom {
  position: absolute;
  left: 0; 
  width: 100%;
  height: 40px;
  background-repeat: repeat-x;
  background-size: auto 20px;
  z-index: 0;
}

.lace-top {
  top: 0;
  background-image: url('');
}

.lace-bottom {
  bottom: 0;
  background-image: url('');
}

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

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

.stickerFlowers {
  position: absolute;
  top: 180px;      
  left: calc(50% + 410px); 
  width: 150px;
  z-index: 10;
}

.stickerTea {
  position: absolute;
  top: 232px;      
  left: calc(50% + 400px); 
  width: 178px;
  z-index: 10;
}

.left-sidebar {
  grid-area: leftSidebar;
}

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

.left-sidebar hr {
  border: 0;
  border-top: var(--border); 
  margin: 1em 0;
}

.right-sidebar hr {
  border: 0;
  border-top: var(--border);
  margin: 1em 0;
}

.sidebar-title {
  font-weight: bold;
  font-size: 1.2em;
  color: #C71585;
  font-family: var(--heading-font);
  padding-bottom: 0px;
}

.receipt-logo {
  font-weight: 900;
  font-size: 1.2em;
  text-align: center;
  color: #000000;
  font-family: "Doto", sans-serif;
  padding-bottom: 5px;
}

.receipt-number {
  font-weight: regular;
  text-align: center;
  font-size: 0.8em;
  color: #000000;
  font-family: FakeReceipt;
  padding-bottom: 5px;
}

.receipt-title {
  font-weight: regular;
  font-size: 1em;
  color: #000000;
  font-family: FakeReceipt;
  padding-bottom: 10px;
  padding-top: 10px;
}

.receipt-barcode {
  font-weight: regular;
  font-size: 3em;
  color: #000000;
  text-align: center;
  font-family: FakeReceipt;
  padding-bottom: 10px;
}

.nav-container {
  max-width: 300px;
  text-align: left;
  padding: 10px;
  padding-bottom: 0px;
  padding-top: 15px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 2px rgba(150, 150, 150, 0.5);
  font-family: FakeReceipt; 
}

.receipt {
    border-image:  url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAAXNSR0IArs4c6QAAAG5JREFUOE/tVUkKACAI1P8/ujAw1IJyOeopBrKZcQnhjAEAmMHlZUpGQVjmvBnJJEySMX7oF0fLyqqOWHFIvVjpgpa6F1NXRq5FJ1U96fXw1i1dKD3n7WnKga/ZD28pola+T+3yLdv80siIZPWnTWyCPAds2Rk2AAAAAElFTkSuQmCC") 7 /  7px / 0 round;
    border-width:  7px;
    border-style:  solid;
}

.sidebar-section1 {
  font-family: "Margarine", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  height: 227px;
  border: var(--border);
  border-radius: var(--round-borders, 8px);
  background-image: url('https://i.pinimg.com/736x/8a/ae/4b/8aae4bafaa3fbbc803c4f4c507062e39.jpg');
  background-size: 172px auto;
  background-repeat: no-repeat;
  padding: 12px;
  padding-top: 30px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 2px rgba(150, 150, 150, 0.5);
}

.sidebar-section2 {
  font-family: "Margarine", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  height: 235px;
  border: var(--border);
  border-radius: var(--round-borders, 8px);
  background-image: url('https://i.pinimg.com/736x/89/77/c7/8977c71e11970f25ca5b393fd2f2e871.jpg');
  background-size: 173px auto;
  background-repeat: no-repeat;
  padding: 12px;
  padding-top: 30px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 5px rgba(139, 0, 75, 0.5); 
}

.sidebar-section3 {
  font-family: "Margarine", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  height: 125px;
  border: var(--border);
  border-radius: var(--round-borders, 8px);
  background-image: url('https://i.pinimg.com/736x/a5/02/a8/a502a8e0959cc7129eb2dee23c2b04ea.jpg');
  background-size: 173px auto;
  background-repeat: no-repeat;
  padding: 12px;
  padding-top: 35px;
  margin-bottom: 5px;
  box-shadow: 2px 2px 5px rgba(139, 0, 75, 0.5); 
}

.sidebar-section4 {
  font-family: "Margarine", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  height: 200px;
  border: var(--border);
  border-radius: var(--round-borders, 8px);
  background-image: url('https://i.pinimg.com/736x/99/db/1d/99db1d9211eda3a92bbb80bec4d1cc68.jpg');
  background-size: 173px auto;
  background-repeat: no-repeat;
  padding: 12px;
  padding-top: 45px;
  box-shadow: 2px 2px 5px rgba(139, 0, 75, 0.5); 
}

.sidebar-section5 {
  font-family: "Margarine", sans-serif;
  font-weight: 400;
  font-style: normal;
  height: 119px;
  border: var(--border);
  border-radius: var(--round-borders, 8px);
  background-image: url('https://i.pinimg.com/originals/19/43/7d/19437d0d58a5e87c9e1f1069de8f02ba.gif');
  background-size: 173px auto;
  background-repeat: no-repeat;
  padding: 12px;
  padding-top: 15px;
  margin-bottom: 15px;
  box-shadow: 2px 2px 5px rgba(139, 0, 75, 0.5); 
}

.sidebar-section6 {
  font-family: "Margarine", sans-serif;
  font-weight: 400;
  font-style: normal;
  height: 100px;
  border: var(--border);
  border-radius: var(--round-borders, 8px);
  background-image: url('');
  background-size: 173px auto;
  background-repeat: no-repeat;
  padding: 12px;
  padding-top: 15px;
  margin-bottom: 15px;
  box-shadow: 2px 2px 5px rgba(139, 0, 75, 0.5); 
}

.sidebar-section7 {
  font-family: "Margarine", sans-serif;
  font-weight: 400;
  font-style: normal;
  height: 100px;
  border: var(--border);
  border-radius: var(--round-borders, 8px);
  background-image: url('https://i.pinimg.com/736x/5b/d6/cc/5bd6cc92893879c9ef97e60c9a89cdd2.jpg');
  background-size: 173px auto;
  background-repeat: no-repeat;
  padding: 12px;
  padding-top: 15px;
  margin-bottom: 15px;
  box-shadow: 2px 2px 5px rgba(139, 0, 75, 0.5);
}

.day-box {
  display: inline-block;
  padding: 10px 20px;
  height: 95px;
  background-image: url("https://64.media.tumblr.com/91839efccb4451d91e1794c1ab58a6b4/e7a46821cfe7af87-0a/s250x400/e70d1a1cb07ec1edba271b5137a67dbad74338d8.png");
  background-size: 170px; 
  background-repeat: no-repeat;
  font-family: "Margarine", sans-serif;
  font-weight: 400;
  font-size:1em;
  font-style: normal;
  color: #000000;
  border-width: 2px;
  text-align: center;
  margin-bottom: 5px;
}

.counter-container {
  display: flex;
  align-items: center;
  gap: 8px; 
  padding: 0px 20px;
  
  font-family: "Margarine", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #C71585;
  text-align: center;
  margin-bottom: 7px;
}

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

.sidebar-section ul,
.sidebar-section ol {
  padding-left: 1.5em;
}

.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);
  padding: 15px;
  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: 1em;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-left {
  flex: 1;
  font-size: 1em;
  flex: 0 0 auto;
  padding-right: 30px;
}

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

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

.lace-footer {
  position: relative;
  background-color: white;
  padding: 20px;
  overflow: hidden;
}

.footer-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Top & Bottom */
.lace-top,
.lace-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  background-repeat: repeat-x;
  z-index: 0;
}

.lace-top {
  top: 0;
  background-image: url('lacekitchen.png');
  background-repeat: repeat-x;
  background-size: auto 20px;
}

.lace-bottom {
  bottom: 0;
  background-image: url('lacekitchen.png');
  background-repeat: repeat-x;
  background-size: auto 20px;
  transform: scaleY(-1);
}

#endImage {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: none;
  width: 100px; 
  pointer-events: none; 
}

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

nav {
  margin-bottom: 3em;
}

nav .sidebar-title {
  margin-bottom: 0.5em;
}

nav ul {
  margin: 0 -5px;
  padding: 0;
  list-style: none;
  user-select: none;
}

nav ul li {
  margin-bottom: 0;
}

nav > ul li > a,
nav > ul li > strong {
  display: inline-block;
}

nav > ul li > a,
nav > ul li > details summary,
nav > ul li > strong {
  padding: 5px 10px;
}

nav > ul li > a.active,
nav > ul li > details.active summary {
  font-weight: bold;
}

nav ul summary {
  cursor: pointer;
}

nav ul ul li > a {
  padding-left: 30px;
}

/* NAVIGATION IN HEADER */

header nav {
  margin-bottom: 0;
}

header nav ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

header nav ul li {
  position: relative;
}

header nav ul li:first-child > a {
  padding-left: 0;
}

header nav ul li:last-child > a {
  padding-right: 0;
}

/* Subnavigation (Drop-Down): */

header nav ul ul {
  background: var(--background-color);
  display: none;
  position: absolute;
  top: 100%;
  left: 10px;
  padding: 0.5em;
  z-index: 1;
  border: var(--border);
  min-width: 100%;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.2);
}

header nav ul li:hover ul,
header nav ul li:focus-within ul {
  display: block;
}

header nav ul li strong {
  color: var(--link-color);
  text-decoration: underline;
  font-weight: normal;
}

header nav ul ul li a {
  display: block;
  padding-left: 0;
  padding-right: 0;
}

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

/* COLUMNS: */

.two-columns {
  display: flex;
  text-align: left;
}

.two-columns > * {
  flex: 1 1 0;
  margin: 0;
}

.two-columns > *:first-child {
  padding-right: 0.75em;
}

.two-columns > *:last-child {
  padding-left: 0.75em;
}

.scroll-box {
  max-height: 243px;        
  overflow-y: auto;        
  padding: 20px;
}

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

.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: var(--round-borders, 8px);
  padding: 0px;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.images {
  display: flex;
  width: calc(100% + 5px + 5px);
  margin-left: -5px;
  margin-right: -5px;
}

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


/* -------------------------------------------------------- */
/* PAGE NOT FOUND */
/* -------------------------------------------------------- */

.pagenotfound {
  max-width:600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fefafc;
  border: var(--border);
  border-radius: 16px;
  text-align: center;
  align-content: center;
  font-family: "Margarine", sans-serif;
  font-weight: 400;
  font-style: normal;  
  color: var(--text-color);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

body.pagenotfound-body {
  overflow: hidden;
  height: 100vh;
}

.backbutton {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: #ffeef7;
  color: #C71585;
  border: var(--border);
  border-radius: 12px;
  font-family: "Margarine", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.backbutton:hover {
  background-color: #ffffff;
}

.back-button-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.backbuttonCrumbs {
  padding: 4px 10px;
  font-size: 13px;
  background: #ffeef7;
  color: #C71585;
  border: var(--border);
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.backbuttonCrumbs:hover {
  background-color: #ffffff;
}


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

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

@media (max-width: 800px) {
  body {
    font-size: 14px;
  }

  .layout {
    width: 100%;
    grid-template: "header" auto  "main" auto "footer" auto / 1fr;
  }

  .left-sidebar { 
    display: none;
  }
  .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;
  }
}
