




 /* 1. Main Background & Container */
#HCB_comment_box {
    background-color: #0d0d0d !important; /* Deep matte black */
    color: #FFD700 !important; /* Gold text */
    padding: 25px;
    border-radius: 12px;
    font-family: "Courier New", Courier, monospace; /* Matches the 'terminal' look in the image */
}

/* 2. Horizontal Divider Line */
#HCB_comment_box hr {
    border-top: 1px dashed #ff0000 !important; /* Red dashed line */
    opacity: 0.5;
}

/* 3. Input Fields (Name and Website) - MOBILE FRIENDLY */
#HCB_comment_box input.text {
    background-color: #1a1a1a !important;
    border: 1px solid #ff0000 !important;
    color: #FFD700 !important;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 10px; /* Add space between them when stacked */
    width: 100% !important; /* Default to full width for mobile safety */
    box-sizing: border-box;
}

/* If the screen is wide enough, put them side-by-side */
@media (min-width: 600px) {
    #HCB_comment_box input.text {
        width: 48% !important;
        display: inline-block;
    }
}


/* 4. The Main Comment Textarea */
#HCB_comment_box textarea {
    background-color: #1a1a1a !important;
    border: 1.5px solid #ff0000 !important; /* Thicker Red Border */
    color: #ffffff !important; /* White text for typing visibility */
    padding: 15px !important;
    width: 100% !important;
    margin-top: 10px;
    border-radius: 6px;
    outline: none;
}

#HCB_comment_box textarea:focus {
    box-shadow: 0 0 10px #ff0000; /* Neon red glow when typing */
}

/* 5. Submit Button (Comment Button) */
#HCB_comment_box input.submit {
    background-color: #000000 !important;
    color: #FFD700 !important;
    border: 1px solid #ff0000 !important;
    padding: 10px 20px !important;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s;
}

#HCB_comment_box input.submit:hover {
    background-color: #ff0000 !important;
    color: #000000 !important;
}

/* 6. Comment Display Area (Bottom Section) */
#HCB_comment_box div.comment {
    border: 1px dashed #ff0000 !important; /* Red dashed border for existing comments */
    background-color: rgba(255, 0, 0, 0.05) !important; /* Very faint red tint */
    padding: 15px !important;
    margin-top: 20px !important;
}

/* 7. Author Name and Links */
#HCB_comment_box .hcb-author {
    color: #FFD700 !important; /* Gold name */
    font-weight: bold !important;
}

#HCB_comment_box .hcb-link, 
#HCB_comment_box a {
    color: #ff0000 !important; /* Red for Reply/Flag links */
    text-decoration: none;
    font-size: 12px;
}

/* 8. NUCLEAR CLEANUP (Hide Footer Ads) */
#HCB_comment_box .home-desc, 
#HCB_comment_box a[href*="htmlcommentbox.com"] {
    display: none !important;
}

/* 1. Sync the Font and Color Theme for BOTH buttons */
#HCB_comment_box input.submit, 
#hcb_file_label a.btn {
    font-family: "Courier New", Courier, monospace !important;
    background-color: #000000 !important; /* Solid Black */
    color: #FFFF00 !important; /* Bright Yellow text */
    border: 1px solid #ff0000 !important; /* Sharp Red border */
    padding: 10px 20px !important;
    font-weight: bold !important;
    text-transform: none !important;
    border-radius: 4px !important; /* Square-ish look like your image */
    display: inline-block;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none !important;
}

/* 2. Sync the Hover Effect for BOTH buttons */
#HCB_comment_box input.submit:hover, 
#hcb_file_label a.btn:hover {
    background-color: #ff0000 !important; /* Turns Red on hover */
    color: #000000 !important; /* Text turns Black */
    box-shadow: 0 0 10px #ff0000; /* Neon red glow */
}




/* 1. Container for the buttons to keep them on the same line */
#HCB_comment_box .hcb-wrapper-half,
#HCB_comment_box .hcb-submit-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

/* 2. Make BOTH buttons look exactly the same */
#HCB_comment_box input.submit, 
#hcb_file_label a.btn {
    /* Reset defaults */
    float: none !important; 
    margin: 0 !important;
    
    /* Font & Colors */
    font-family: "Courier New", Courier, monospace !important;
    background-color: #000000 !important;
    color: #FFD700 !important; /* Yellow text */
    border: 1px solid #ff0000 !important; /* Red border */
    
    /* Sizing - Ensures they are the same height */
    padding: 10px 20px !important;
    height: 42px !important; 
    display: flex !important;
    align-items: center;
    justify-content: center;
    
    border-radius: 4px !important;
    font-weight: bold !important;
    cursor: pointer;
    text-decoration: none !important;
}

/* 3. Ensure the label doesn't add extra vertical space */
#hcb_file_label {
    display: inline-flex !important;
    vertical-align: middle;
    margin: 0 !important;
    padding: 0 !important;
}

/* 4. Hover effect for both */
#HCB_comment_box input.submit:hover, 
#hcb_file_label a.btn:hover {
    background-color: #ff0000 !important;
    color: #000000 !important;
    box-shadow: 0 0 10px #ff0000;
}


/* 1. FORCE THE BUTTON SIZES TO MATCH */
#HCB_comment_box input.submit, 
#hcb_file_label a.btn {
    /* Sizing - Adjust these numbers to your preferred "small" size */
    width: 110px !important;   /* Sets a fixed width */
    height: 35px !important;  /* Sets a fixed height */
    
    /* Reset Bootstrap Defaults */
    padding: 0 !important;      /* Removes the huge padding */
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    
    /* Font & Styling */
    font-size: 13px !important; /* Smaller font for a smaller box */
    font-family: "Courier New", Courier, monospace !important;
    background-color: #000000 !important;
    color: #FFD700 !important;
    border: 1px solid #ff0000 !important;
    border-radius: 4px !important;
    
    /* Alignment */
    float: none !important;
    margin: 0 !important;
}

/* 2. SHRINK THE LABEL CONTAINER */
#hcb_file_label {
    display: inline-block !important;
    width: auto !important; /* Prevents it from stretching to 100% */
    margin: 0 !important;
    padding: 0 !important;
}

/* 3. ALIGN THEM SIDE-BY-SIDE */
#HCB_comment_box .hcb-wrapper-half {
    display: flex !important;
    gap: 8px !important; /* Small gap between buttons */
    align-items: center;
}



/* Sets the typing text and the name box text to Yellow */
#HCB_comment_box textarea, 
#HCB_comment_box input.text {
    color: #FFD700 !important; /* Bright Yellow typing text */
    font-family: "Courier New", Courier, monospace !important;
}

/* Optional: Styles the placeholder (the "Enter your comment here" text) to be a darker yellow/gold */
#HCB_comment_box textarea::placeholder,
#HCB_comment_box input.text::placeholder {
    color: rgba(255, 255, 0, 0.5) !important; 
}




/* 1. CONTAINER: Puts the Name Box and GIF side-by-side */
#HCB_comment_box .hcb-wrapper-half:has(input[name="name"]),
#HCB_comment_box div.hcb-input-group {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px;
}

/* 2. SHRINK THE GIF: 50% size (Adjusted from 32px to 16px) */
#HCB_comment_box img[src*="delete.png"], 
#HCB_comment_box .hcb-icon[alt="[delete]"] {
    width: 0 !important;
    height: 0 !important;
    padding-right: 16px !important; /* 50% of previous 32px */
    padding-top: 16px !important;    /* 50% of previous 32px */
    background-image: url("https://blob.gifcities.org/gifcities/WP2F7DURQDSMJNNORI4RNVQIRAUUPJXV.gif") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    display: inline-block !important;
    order: 2; /* Ensures it sits to the right of the name box */
}

/* 3. NAME BOX: Keeps your theme intact */
#HCB_comment_box input.text {
    background-color: #000000 !important;
    border: 1px solid #ff0000 !important;
    color: #FFFF00 !important;
    font-family: "Courier New", Courier, monospace !important;
    height: 35px !important;
    width: 140px !important;
    order: 1;
}





/* 1. Target the button tag specifically to kill the blue */
#HCB_comment_box button.hcb-flag,
#HCB_comment_box .hcb-action-bar button,
#HCB_comment_box .hcb-link {
    background: none !important; /* Removes default button grey/blue background */
    border: none !important;     /* Removes default button border */
    color: #FF0000 !important;    /* FORCES RED TEXT */
    padding: 0 !important;       /* Removes extra button spacing */
    cursor: pointer !important;
    font-family: "Courier New", Courier, monospace !important;
    font-size: 13px !important;
    font-weight: bold !important;
    text-decoration: none !important;
}

/* 2. Style the hover effect */
#HCB_comment_box button.hcb-like:hover,
#HCB_comment_box .hcb-action-bar button:hover {
    color: #FFFF00 !important; /* Turns Yellow on hover */
    text-decoration: underline !important;
}

/* 3. Style the little dots/separators */
#HCB_comment_box .hcb-link-sep {
    color: #800000 !important; /* Dark Red */
}



/* 1. Target the button tag specifically to kill the blue */
#HCB_comment_box button.hcb-reply,
#HCB_comment_box .hcb-action-bar button,
#HCB_comment_box .hcb-link {
    background: none !important; /* Removes default button grey/blue background */
    border: none !important;     /* Removes default button border */
    color: #FF0000 !important;    /* FORCES RED TEXT */
    padding: 0 !important;       /* Removes extra button spacing */
    cursor: pointer !important;
    font-family: "Courier New", Courier, monospace !important;
    font-size: 13px !important;
    font-weight: bold !important;
    text-decoration: none !important;
}

/* 2. Style the hover effect */
#HCB_comment_box button.hcb-like:hover,
#HCB_comment_box .hcb-action-bar button:hover {
    color: #FFFF00 !important; /* Turns Yellow on hover */
    text-decoration: underline !important;
}

/* 3. Style the little dots/separators */
#HCB_comment_box .hcb-link-sep {
    color: #800000 !important; /* Dark Red */
}



/* 1. Target the button tag specifically to kill the blue */
#HCB_comment_box button.hcb-like,
#HCB_comment_box .hcb-action-bar button,
#HCB_comment_box .hcb-link {
    background: none !important; /* Removes default button grey/blue background */
    border: none !important;     /* Removes default button border */
    color: #FF0000 !important;    /* FORCES RED TEXT */
    padding: 0 !important;       /* Removes extra button spacing */
    cursor: pointer !important;
    font-family: "Courier New", Courier, monospace !important;
    font-size: 13px !important;
    font-weight: bold !important;
    text-decoration: none !important;
}

/* 2. Style the hover effect */
#HCB_comment_box button.hcb-like:hover,
#HCB_comment_box .hcb-action-bar button:hover {
    color: #FFFF00 !important; /* Turns Yellow on hover */
    text-decoration: underline !important;
}

/* 3. Style the little dots/separators */
#HCB_comment_box .hcb-link-sep {
    color: #800000 !important; /* Dark Red */
}




/* 1. TARGET THE ACTION BAR LINKS DIRECTLY */
#HCB_comment_box .hcb-action-bar a,
#HCB_comment_box .hcb-action-bar a:link,
#HCB_comment_box .hcb-action-bar a:visited,
#HCB_comment_box div.comment .hcb-link {
    color: #FFD700 !important; /* Forces the Blue to Red */
    font-family: "Courier New", Courier, monospace !important;
    font-size: 13px !important;
    font-weight: bold !important;
    text-decoration: none !important;
}

/* 2. STYLE THE SEPARATOR DOTS (•) BETWEEN THEM */
#HCB_comment_box .hcb-link-sep,
#HCB_comment_box .hcb-action-bar span {
    color: #800000 !important; /* Darker red dots */
    font-weight: bold !important;
}

/* 3. HOVER EFFECT - Turns Yellow */
#HCB_comment_box .hcb-action-bar a:hover {
    color: #FFD700 !important;
    text-shadow: 0 0 5px #ff0000;
}








/* 1. Target the Name input specifically */
#HCB_comment_box input.text,
#HCB_comment_box input[name="name"] {
    /* Background and Border */
    background-color: #000000 !important; /* Black background */
    border: 1px solid #ff0000 !important;  /* Neon Red border */
    border-radius: 4px !important;
    
    /* Text and Font */
    color: #FFD700 !important;            /* Yellow typing text */
    font-family: "Courier New", Courier, monospace !important;
    font-size: 14px !important;
    font-weight: bold !important;
    
    /* Sizing to match your buttons */
    height: 35px !important;
    padding: 0 10px !important;
    outline: none !important;
    box-shadow: none !important;
}

/* 2. Style the placeholder text (the "Name" hint) */
#HCB_comment_box input.text::placeholder {
    color: #FFD700 !important; /* Faint yellow */
    font-family: "Courier New", Courier, monospace !important;
}

/* 3. Subtle glow when you click inside */
#HCB_comment_box input.text:focus {
    box-shadow: 0 0 8px #ff0000 !important;
    border-color: #ff0000 !important;
}





/* 1. FORCE THE ENTIRE BOX TO OBEY THE RED/YELLOW THEME */
#HCB_comment_box * {
    font-family: "Courier New", Courier, monospace !important;
}

/* 2. THE BLUE-KILLER: Targets every 'a' tag (link) inside the box */
#HCB_comment_box a, 
#HCB_comment_box a *, 
#HCB_comment_box .hcb-link, 
#HCB_comment_box .hcb-action-bar a {
    color: #FFD700 !important; /* Force Red */
    text-decoration: none !important;
}

/* 3. THE VISITED-KILLER: Stops clicked links from turning blue/purple */
#HCB_comment_box a:visited, 
#HCB_comment_box a:link, 
#HCB_comment_box a:active {
    color: #FF0000 !important;
}

/* 4. THE HOVER-KILLER: Turns them yellow when you touch them */
#HCB_comment_box a:hover {
    color: #FFFF00 !important;
    text-shadow: 0 0 5px #ff0000;
}

/* 5. FORCE EMAIL TEXT TO YELLOW */
#HCB_comment_box label, 
#HCB_comment_box label span, 
#HCB_comment_box .hcb-email-label {
    color: #FFFF00 !important;
}






/* 1. Targets every state of the link to KILL the blue and purple */
#HCB_comment_box .hcb-action-bar a,
#HCB_comment_box .hcb-action-bar a:link,
#HCB_comment_box .hcb-action-bar a:visited,
#HCB_comment_box a.hcb-link,
#HCB_comment_box a.hcb-link:visited {
    color: #FF0000 !important; /* Forces Red */
    font-family: "Courier New", Courier, monospace !important;
    text-decoration: none !important;
    font-weight: bold !important;
}

/* 2. Hover state - Turns Yellow when you touch it */
#HCB_comment_box .hcb-action-bar a:hover,
#HCB_comment_box a.hcb-link:hover {
    color: #FFFF00 !important;
    text-shadow: 0 0 5px #ff0000;
}

/* 3. Style the dots between Like, Reply, and Flag */
#HCB_comment_box .hcb-link-sep,
#HCB_comment_box .hcb-action-bar span {
    color: #800000 !important; /* Dark Red dots */
}








/* Forces the 'Email Me Replies' text to Yellow */
#HCB_comment_box .hcb-wrapper-half label,
#HCB_comment_box .hcb-email-label,
#HCB_comment_box label[for="hcb_email_replies"],
#HCB_comment_box label span {
    color: #FFD700 !important; /* Bright Yellow */
    font-family: "Courier New", Courier, monospace !important;
    font-size: 13px !important;
    font-weight: bold !important;
    text-shadow: 1px 1px 1px #000; /* Makes it easier to read on dark backgrounds */
}

/* Optional: Make the actual checkbox checkmark Red */
#HCB_comment_box input[type="checkbox"] {
    accent-color: #ff0000 !important;
    cursor: pointer;
}


/* 1. Makes the "Email Me Replies" text Yellow */
#HCB_comment_box .hcb-wrapper-half label[for="hcb_email_replies"],
#HCB_comment_box label[for="hcb_email_replies"],
#HCB_comment_box .hcb-email-label {
    color: #FFFF00 !important; /* Bright Yellow */
    font-family: "Courier New", Courier, monospace !important;
    font-size: 13px !important;
    font-weight: bold !important;
    cursor: pointer;
}

/* 2. Styles the actual Checkbox to fit the theme */
#HCB_comment_box input[type="checkbox"]#hcb_email_replies {
    accent-color: #ff0000; /* Makes the checkmark Red */
    cursor: pointer;
    margin-right: 8px;
    vertical-align: middle;
}

/* 3. Hide the secondary "Settings" or "Email" input if it appears next to it */
#HCB_comment_box input[name="email"],
#HCB_comment_box .hcb-wrapper-half:has(input[name="email"]) {
    display: none !important;
}
  
  
  
  
  




  
/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #eeeeee;
  --content-background-color: #111111;
  --sidebar-background-color: #3f3f3f;

  /* Text Colors: */
  --text-color: #ffb71f;
  --sidebar-text-color: #ffb71f;
  --link-color: #e82020;
  --link-color-hover: #ececec;

  /* Text: */
  --font: Lucida Console, monospace;
  --heading-font: Courier New, monospace;
  --font-size: 14px;

  /* Other Settings: */
  --margin: 10px;
  --padding: 20px;
  --border: 5px solid #d10000;
  --round-borders: 0px;
  --sidebar-width: 200px;
}

/* -------------------------------------------------------- */
/* 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://sadhost.neocities.org/images/tiles/redweavebg.gif");
  
}

::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 {
  width: 1000px;
  display: grid;
  grid-gap: var(--margin);
  grid-template: "header" auto "main" auto "footer" auto / auto;
  /* 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: var(--content-background-color);
  border: var(--border);
  border-radius: var(--round-borders);
}

/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */

header {
  grid-area: header;
  font-size: 1.2em;
  border: var(--border);
  border-radius: var(--round-borders);
  background: var(--content-background-color);
}

.header-content {
  padding: var(--padding);
}

.header-title {
  font-family: var(--heading-font);
  font-size: 1.5em;
  font-weight: bold;
}

.header-image img {
  width: 100%;
  height: auto;
}

/* -------------------------------------------------------- */
/* 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;
}

.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 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;
}



/* -------------------------------------------------------- */
/* 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(--content-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 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;
}

.two-columns > * {
  flex: 1 1 0;
  margin: 0;
}

.two-columns > *:first-child {
  padding-right: 0.75em;
}

.two-columns > *:last-child {
  padding-left: 0.75em;
}

/* -------------------------------------------------------- */
/* CONTENT IMAGES */
/* -------------------------------------------------------- */

.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.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;
}

/* -------------------------------------------------------- */
/* 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;
  }
}
