/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Jersey+25&display=swap');

  
/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #000000;
  --content-background-color: #0d001f;
  --sidebar-background-color: #051a00b6;

  /* Text Colors: */
  --text-color: #ffffff;
  --sidebar-text-color: #ffffff;
  --link-color: #39ff14;
  --link-color-hover: #ff4d00;

  /* Text: */
  --font: 'Jersey 25', sans-serif;
  --heading-font: 'Jersey 25', sans-serif;
  --font-size: 18px;

  /* Other Settings: */
  --margin: 10px;
  --padding: 20px;
  --border: 5px ridge #63795f;
  --round-borders: 4px;
  --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/stars3.gif");
  
}

::selection {
  /* (Text highlighted by the user) */
    background: var(--link-color);
 color: #8614FF;
}

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:none;
 cursor:url(https://cdn.cursors-4u.net/css-previews/night-diamond-bloody-red-precision-select-7f540fba-css.webp),auto !important; 
}

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
   letter-spacing: 3px;
   transition: 0.5s;
  color: #ff4d00;
  text-decoration: none;
}
* {cursor: url(https://cur.cursors-4u.net/symbols/sym-1/sym14.cur), url(), auto !important; 
}

/* -------------------------------------------------------- */
/* LAYOUT */
/* -------------------------------------------------------- */

.layout {
  width: 1000px;
  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 {

  box-shadow: 0px 0px 10px 0px #39ff14;
  grid-area: main;
  padding: var(--padding);
  background: var(--content-background-color);
  border: 3px groove black;
  border-radius: var(--round-borders);
  animation: myAnim 1s cubic-bezier(0.85, 0, 0.15, 1); 0s 1 normal forwards;
}
@keyframes myAnim {
	0% {
		opacity: 0;
		transform: scale(0.6);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.cajita1{
  text-align: center;
  height: fit-content;
  width: fit-content;
  margin: 0 10px 10px 10px;
  padding: 15px;
  border: groove black 4px;
  display: block;
  background-color: #000000;
}
.cajita1 h1{
  border:3px groove black!important;
background:linear-gradient(180deg,rgba(64, 64, 64, 1) 0%, rgba(8, 8, 8, 1) 11%, rgba(0, 0, 0, 1) 90%, rgba(64, 64, 64, 1) 98%)!important;
    margin: 0;
    padding: 4px 0;
    color:#39ff14;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}
.cajita2{
  text-align: center;
  height: fit-content;
  margin: 0 10px 10px 10px;
  padding: 15px;
  border: groove black 4px;
  display: block;
  background-color: #000000;
}
.cajita2 h1{
  border:3px groove black!important;
background:linear-gradient(180deg,rgba(64, 64, 64, 1) 0%, rgba(8, 8, 8, 1) 11%, rgba(0, 0, 0, 1) 90%, rgba(64, 64, 64, 1) 98%)!important;
    margin: 0;
    padding: 4px 0;
    color:#39ff14;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}   	
.pkmn img{
transition: transform ease-in-out .3s;
}
.pkmn img:hover{
transform: rotate(11deg) scale(120%) !important;
}
 
.tab {
  overflow: hidden;
  border: groove black 4px;
   background:linear-gradient(180deg,rgba(64, 64, 64, 1) 0%, rgba(8, 8, 8, 1) 11%, rgba(0, 0, 0, 1) 90%, rgba(64, 64, 64, 1) 98%);
}

/* Style the buttons inside the tab */
.tab button {
  font-family:'Jersey 25';
  float: left;
  border: groove black 4px;
   background:linear-gradient(180deg,rgba(64, 64, 64, 1) 0%, rgba(8, 8, 8, 1) 11%, rgba(0, 0, 0, 1) 90%, rgba(64, 64, 64, 1) 98%);
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color: #39ff14;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #000000;
  border: ridge 4px black;
  color: #39ff14;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #000000;
  border: ridge 4px black;
  color: #39ff14;
}

/* Style the tab content */
.tabcontent {
  text-align: center;
  margin: 0 10px 10px 10px;
  border: groove black 4px;
  background-color: #000000;
  display: none;
  padding: 6px 12px;
  border-top: none;
  height: 400px;
  overflow: scroll;

}
.tabcontent img {
width: 20%;
border: dotted 2px #39ff14;
transition: transform ease-in-out .3s;
}
.tabcontent img:hover {
transform: scale(120%) !important;
}
	  #hoohoo {
      background: linear-gradient(180deg,rgba(64, 64, 64, 1) 0%, rgba(8, 8, 8, 1) 11%, rgba(0, 0, 0, 1) 90%, rgba(64, 64, 64, 1) 98%)!important;;
	    border: 3px groove black;
	    white-space: nowrap;
	    overflow-x: auto;
	    padding: .5em;
	    box-sizing: border-box;
	    height: 10em;
	    overflow-y: hidden;
	  }

	  .lala {
	    width:166px;
	    overflow-y:scroll;
	    overflow-x:hidden;
	    border: 3px groove black;
	    white-space: normal;
	    display: inline-block;
	    height: 90%;
	    padding: 20px;
	    vertical-align: middle;
      background:black;
	  }
    .lala h1{
        border:3px groove black!important;
background:linear-gradient(180deg,rgba(64, 64, 64, 1) 0%, rgba(8, 8, 8, 1) 11%, rgba(0, 0, 0, 1) 90%, rgba(64, 64, 64, 1) 98%)!important;
    margin: 0;
    padding: 4px 0;
    color:#39ff14;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    font-size: smaller;
	  }
    
#disc-collection * {
    all: unset;
  }
  #disc-collection {
    all: initial!important;
    width: 100%!important;
    height: 240px!important;
    margin: 30px 0!important;
    display: flex!important;
    flex-direction: row!important;
    position: relative!important;
    margin-left: 2px!important;
  }
  #disc-collection .disc {
      all:unset!important;
    perspective: 500px !important;
    width: 20px!important;
    transition: width 0.5s!important;
  }
  #disc-collection .disc:hover {
    width: 180px!important;
  }
  #disc-collection img {
      all:unset!important;
    transition: transform 0.5s, width 0.5s, height 0.5s, margin-top 0.5s!important;
    width: 183px!important;
    height: 180px!important;
    transform: rotateX(0deg) rotateY(5deg)!important;
    transform-style: preserve-3d!important;
    border-radius: 4px!important;
    border: 2px solid rgba(0, 0, 0, 0.1)!important;
    margin-left: 20px!important;
object-fit: cover!important;
  }
 #disc-collection .disc:after {
content: "";
background: url('https://fluorescent-lights.neocities.org/f0rzNHe.png'), 
linear-gradient(150deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2), 40%, 
rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.6));
background-size: contain, cover;
position: absolute;
top: 0;
left: 0;
transition: transform 0.5s, width 0.5s, height 0.5s, margin-top 0.5s!important;
    width: 210px!important;
    height: 183px!important;
    transform: rotateX(0deg) rotateY(5deg)!important;
    transform-style: preserve-3d!important;
    border: 0px solid rgba(0, 0, 0, 0)!important;
object-fit: cover!important;
}
  #disc-collection .disc:hover img {
    transform: rotateX(0deg) rotateY(1deg)!important;
    width: 183px!important;
    height: 180px!important;
    margin-top: -25px!important;
    margin-left: 20px!important;
  }
   #disc-collection .disc:hover:after {
    transform: rotateX(0deg) rotateY(1deg)!important;
    width: 210px!important;
    height: 183px!important;
    margin-top: -25px!important;
  }
  #disc-collection .title {
    color: #39ff14;
    display: block;
    visibility: hidden;
    position: absolute;
    bottom: 0px;
    text-align: center;
    width: 100%;
    padding-left: 6px;
  }
  #disc-collection .disc:nth-child(n):hover + .title {
    visibility: visible;
  }

#cajitadeestampas{
  text-align: center;
  background-image: url("https://i.pinimg.com/1200x/5c/5f/ec/5c5fecc4484f454d15633648d18f758b.jpg") !important;
  background-size: cover;
  background-position: center center;
}
#cajitadeestampas img:hover{
  transform: scale(1.2) rotate(10deg) !important;
} 
#cajitadeestampas {
      border: 3px dotted lime;
      transition: 0.7s;
      overflow: scroll;
      overflow-x: hidden;
      height: 10em;
      padding: 1rem;
    }

/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */

header {
  color: #000000;
  box-shadow: 0px 0px 10px 0px #39ff14;
  text-shadow: 0px 0px 10px  #39ff14;
  grid-area: header;
  font-size: 1.2em;
 border-width: 7px;
  border-style: solid;
  border-image: url("https://i.imgur.com/SqhJATD.png") 8 fill round;
  border-radius: var(--round-borders);
  background-image: url("img/WEB\ BANNER_Mesa\ de\ trabajo\ 1.png");
  background-size: cover;
  background-position: center;
animation: myAnimdos 1s cubic-bezier(0.85, 0, 0.15, 1); 0s 1 normal forwards;
 }
@keyframes myAnimdos {
	0% {
		transform: scaleX(0);
	}

	100% {
		transform: scaleX(1);
	}
}

.header-nav{
  color: #000000 !important;
    border-radius: 50px !important;
    padding-left: inherit !important;
    background-color: #000000c9 !important;
}

.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;
}
.logo:hover{
animation: shake 0.5s; 
animation-iteration-count: infinite; 
-webkit-filter:blur(1px); 
-webkit-transition: .5s ease-in; 
} 
 
@keyframes shake {
0% { transform: translate(1px, 1px) rotate(0deg); }
10% { transform: translate(-1px, -2px) rotate(-1deg); }
20% { transform: translate(-3px, 0px) rotate(1deg); }
30% { transform: translate(3px, 2px) rotate(0deg); }
40% { transform: translate(1px, -1px) rotate(1deg); }
50% { transform: translate(-1px, 2px) rotate(-1deg); }
60% { transform: translate(-3px, 1px) rotate(0deg); }
70% { transform: translate(3px, 1px) rotate(-1deg); }
80% { transform: translate(-1px, -1px) rotate(1deg); }
90% { transform: translate(1px, 2px) rotate(0deg); }
100% { transform: translate(1px, -2px) rotate(-1deg); }
} 


/* -------------------------------------------------------- */
/* SIDEBARS */
/* -------------------------------------------------------- */

aside {
  border:3px groove black!important;
background:linear-gradient(180deg,rgba(64, 64, 64, 1) 0%, rgba(8, 8, 8, 1) 11%, rgba(0, 0, 0, 1) 90%, rgba(64, 64, 64, 1) 98%);
  box-shadow: 0px 0px 10px 0px #39ff14;
  grid-area: aside;
  border-radius: var(--round-borders);
  overflow: hidden;
  padding: var(--padding);
  color: var(--sidebar-text-color);
  animation: myAnimtres 1s cubic-bezier(0.85, 0, 0.15, 1); 0s 1 normal forwards;
  }
@keyframes myAnimtres {
	0% {
		transform: scaleY(0);
	}

	100% {
		transform: scaleY(1);
	}
}


.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;
}
@font-face {
font-family: Fox;
src: url("https://file.garden/aMuL0oRhjDKbkUNC/spiritfox.otf") format("opentype");
}

/* Sidebar Blockquote: */

.sidebar-section blockquote {
  border:3px groove black!important;
background:linear-gradient(180deg,rgba(64, 64, 64, 1) 0%, rgba(8, 8, 8, 1) 11%, rgba(0, 0, 0, 1) 90%, rgba(64, 64, 64, 1) 98%);
  padding: 15px;
  margin: 1em 0;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
}

.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;
}
.sidebar-section img {
transition: transform ease-in-out 0.3s;
}
.sidebar-section img:hover{
transform:scale(110%)
}
#statuscafe {
    border:3px groove black!important;
  background:linear-gradient(180deg,rgba(64, 64, 64, 1) 0%, rgba(8, 8, 8, 1) 11%, rgba(0, 0, 0, 1) 90%, rgba(64, 64, 64, 1) 98%);
  height: fit-content;
  padding: 7px;
  text-align: center;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}
.identitybuttons{
   border:3px groove black!important;
  background:linear-gradient(180deg,rgba(64, 64, 64, 1) 0%, rgba(8, 8, 8, 1) 11%, rgba(0, 0, 0, 1) 90%, rgba(64, 64, 64, 1) 98%);
  height: fit-content;
  padding: 7px;
  text-align: center;
  margin: 0%;

}


/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */

footer {
  align-items: center;
  box-shadow: 0px 0px 10px 0px #39ff14;
  border:3px groove black!important;
background:linear-gradient(180deg,rgba(64, 64, 64, 1) 0%, rgba(8, 8, 8, 1) 11%, rgba(0, 0, 0, 1) 90%, rgba(64, 64, 64, 1) 98%);
  grid-area: footer;
  overflow: hidden;
  font-size: 0.75em;
  padding: 15px;
  display: flex;
  justify-content: center;
  animation: myAnimcinco 1s cubic-bezier(0.85, 0, 0.15, 1); 0s 1 normal forwards;
}
@keyframes myAnimcinco {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: translateY(250px);
	}

	38% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateY(0);
	}

	55% {
		animation-timing-function: ease-in;
		transform: translateY(65px);
	}

	72% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	81% {
		animation-timing-function: ease-in;
		transform: translateY(28px);
	}

	90% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	95% {
		animation-timing-function: ease-in;
		transform: translateY(8px);
	}

	100% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}
}

footer a,
footer a:visited {
  color: var(--link-color);
}

footer a:hover,
footer a:focus {
  color: var(--link-color-hover);
}

/* -------------------------------------------------------- */
/* NAVIGATION */
/* -------------------------------------------------------- */

nav {
  border:3px groove black!important;
background:linear-gradient(180deg,rgba(64, 64, 64, 1) 0%, rgba(8, 8, 8, 1) 11%, rgba(0, 0, 0, 1) 90%, rgba(64, 64, 64, 1) 98%);
  padding-left: 60px;
  box-shadow: 0px 0px 10px 0px #39ff14;
  margin-bottom: 3em;
  animation: myAnimcuatro 2s cubic-bezier(0.85, 0, 0.15, 1); 1s 1 normal forwards;
}
@keyframes myAnimcuatro {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: translateY(-250px);
	}

	38% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateY(0);
	}

	55% {
		animation-timing-function: ease-in;
		transform: translateY(-65px);
	}

	72% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	81% {
		animation-timing-function: ease-in;
		transform: translateY(-28px);
	}

	90% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}

	95% {
		animation-timing-function: ease-in;
		transform: translateY(-8px);
	}

	100% {
		animation-timing-function: ease-out;
		transform: translateY(0);
	}
}
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;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb {
  background: #8cff00;
  border: 0px none #37ff00;

}
::-webkit-scrollbar-thumb:hover {
  background: #ff4d00;
}
::-webkit-scrollbar-thumb:active {
  background: #ff4d00;
}
::-webkit-scrollbar-track {
  background: #000000;
  border: 0px ridge #ffffff;

}
::-webkit-scrollbar-track:hover {
  background: #5900ff;
}
::-webkit-scrollbar-track:active {
  background: #333333;
}
::-webkit-scrollbar-corner {
  background: transparent;
}


/* 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 {
  box-shadow: 0px 0px 10px 0px #39ff14;
  border:3px groove black!important;
background:linear-gradient(180deg,rgba(64, 64, 64, 1) 0%, rgba(8, 8, 8, 1) 11%, rgba(0, 0, 0, 1) 90%, rgba(64, 64, 64, 1) 98%);
  display: none;
  position: absolute;
  top: 100%;
  left: 10px;
  padding: 0.5em;
  z-index: 1;
  min-width: 100%;
}

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 {
   background-image: url("https://sadhost.neocities.org/images/tiles/swirlblack1.jpg");
   border:3px ridge black!important;
  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;
  }
}
