/* 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: var(--border);
  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{
  height: fit-content;
  margin: 0 10px 10px 10px;
  padding: 15px;
  border: groove black 4px;
  display: block;
}
.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;
}
.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;
}
 #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 {
      place-content: center;
	    width:166px;
	    overflow-y:hidden;
	    overflow-x:hidden;
	    border: 3px groove black;
	    white-space: normal;
	    display: inline-block;
	    height: 90%;
	    vertical-align: middle;
      background:black;
	  }
#botoncitos{
  text-align: center;
  place-content: center;
}
#botoncitos img{
transition: transform ease-in-out .3s;
}
#botoncitos img:hover{
  transform: scale(120%);
}
  


/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */

header {
  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 {
 
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;
  box-shadow: 0px 0px 10px 0px #39ff14;
  border: 3px groove black;
  grid-area: aside;
  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 {
  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;
  grid-area: leftSidebar;
}

.right-sidebar {
  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;
  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;
}

.sidebar-section blockquote > *:first-child {
  margin-top: 0;
}

.sidebar-section blockquote > *:last-child {
  margin-bottom: 0;
}
.aclaración{
  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: 150px;
  overflow: scroll;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 7px;
  text-align: center;
}
#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;
  overflow: auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 9px;
  text-align: center;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
  color: #39ff14;
    margin: 0 1em 0.5em 1em;
}
.float1 {
float: left;
position: absolute;
left: 150px;
top:280px;
z-index: 200;
animation: float 3s ease-in-out infinite;

        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0);
            }
        }
.float1 img{
transition: ease-in-out transform 0.5s;
}
.float1 img:hover{
transform: scale(1.2) rotate(10deg)!important;
}
.float2 {
float: right;
position: absolute;
right: 150px;
top:1050px;
z-index: 200;
animation: float 3s ease-in-out infinite;

        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0);
            }
        }
.float2 img{
transition: ease-in-out transform 0.5s;
}
.float2 img:hover{
transform: scale(1.2) rotate(10deg)!important;
}
main:before {
	width: 100%;
	height: 240px ;
	display: block;
	content: "";
	background-image: url('https://i.pinimg.com/736x/b9/8f/29/b98f294fca6e2600d85a08845d485b1c.jpg');
	background-position: center center;
	background-size: cover;
}
@media only screen and (max-width: 600px) {
	main:before{
		height: 200px;
	}
}




   

  


/* 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{
  transition: ease-in-out 0.3s;
transform:scale(110%)
}


/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */

footer {
  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: #000000;
   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;
  }
}
