/* FONT IMPORT */
@import url('https://dl.dropbox.com/s/vlxjtnvrl9s0snp/Nintendo-DS-BIOS.ttf');

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

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

  /* Text Colors: */
  --text-color: #000000;
  --sidebar-text-color: #b62b67;
  --link-color: #3256e8;
  --link-color-hover: #ec3030;

  /* Text: */
  --font: courier prime;
  --heading-font: 'Nintendo-DS-BIOS', sans-serif;
  --font-size: 14px;

  /* Other Settings: */
  --margin: 10px;
  --padding: 20px;
  --border: 2px solid #97e1fe;
  --round-borders: 0px;
  --sidebar-width: 200px;
  
}

@font-face {
font-family: Nintendo-DS-BIOS;
src: url(https://dl.dropbox.com/s/vlxjtnvrl9s0snp/Nintendo-DS-BIOS.ttf);
}


/* -------------------------------------------------------- */
/* 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://dl.glitter-graphics.com/pub/3595/3595820k9xzocqc1b.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;
    border-image:  url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFQAAABUCAYAAAAcaxDBAAACk0lEQVR4Xu2c0VHEMAwF72qhBGqiKmqiBGqBX6Kbyc4byUmOW35ly9JKsh0l3P3m3yiB+6g2ld0EOpwEAv3vQD+/vn/++vjx/rYJOsmH+cTqLpehBIzkMYHhCQIV6P6WMMwnVveQod2SSufX8bEHZULdc6u+1L50vkDLoUcBpYAIVKD7OXS5kqeUn5YfvYdO21/1nX5tEuhwiAUq0F0Cd7oGdPml+tOMXX0Ikf/VXoESMZALNLx3Em+BXg1od0+kPS99dk4ziNbv+hfvod0FySGBQgmlARCoQDevbLDbVDOG3vHQeNrzVsvpntv1T6DQoE4DIFCB9jaFNOPS8ae373p4rjdboMMxEahAhwkMq8MMpScdkg/bO66O7Cd5/E6JFJJ8nMCwQrKf5AItBAgYyQV6NFC6yKYVl7brUv3p+NX+xY+eqQMCLV8QpwCfvduU+lsTxgxNCUIzRaAC7RHwUOrxe5gt0GcHWu1PI3q1axLFY9q/uDlCBgoUCE1HkAJytHzaPzM0fJChCkSgtKfSAkdnXHe9tLsUd5sEuv3nXQqYGRq28wRKBM4GGtr3csPjkn85QqHDAg2B0XCBEqFQLtAQGA0XKBEK5QINgdFwgRKhUH45oPQsTfLQ//HhAh1GKlCB+rtNu1WQdswpoag/292DaT5+6EAGdvulAoUUoQhSACgDSU4JkNpH9sbfNpGB6YI0noCRnOw9HCgZPC0/uuSn7a/6Tr82CXQ4xAIV6C6B+CcyUp7pIZBm7OpDiPyt9gqUiIXXRIEKdEvg6Uu+uycSALr4r57f9S8u+e6Cq4F0A9L1T6AlAgINT2GqkDZQKpEq7/6uUfNQbU+ne27XP+yHCnT7hoB4CLQQMkPDTWB1yf8CJne0wj7sEJIAAAAASUVORK5CYII=") 28 /  28px / 0 round;
    border-width:  28px;
    border-style:  solid;
  /* 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);
}


/* -------------------------------------------------------- */
/* 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;
  font-size:18px;
  margin-left:10px;
}

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: 40px;
}

main h2 {
  font-size: 30px;
  color: #0047AB;
}

main h3 {
 font-size: 20px;
  color: #0047AB;
  margin-top: 0;
}

main h4 {
 font-size: 30px;
  color: black;
  margin-top: 0;
  text-align: right;
}

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%;
  margin-left: 20px;
  margin-top:0;
}

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

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

.images img {
  width: 50%;
  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;
  }
}

.example-image-gallery {
  display: flex;
  flex-wrap: wrap;
}

/* Items */
.example-image-gallery div {
  box-sizing: border-box;
  width: calc(25% - 10px);
  margin: 5px;
  border: 5px solid;
  border-color:#D2042D;
  overflow: hidden;
  position: relative;
}

/* Images */
.example-image-gallery div img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Images on Hover */
.example-image-gallery div:hover img {
  transform: scale(1.35) rotate(10deg);
}


/* Mobile */
@media (max-width: 800px) {
  .example-image-gallery div {
    width: calc(50% - 10px);
  }
}


.computamor-one{
    
  background-image: url("https://hoxticos.carrd.co/assets/images/image01.jpg?v=dfd9c437");
  background-size: cover;
  position: relative;
  justify-content: center;
  margin:auto;
  left: 1px;
  width:400px;
  height: 400px;
  z-index: 6;
  bottom:auto;
  border-color:white;
}

.computamor-two{
    
  background-image: url("https://hoxticos.carrd.co/assets/images/image02.jpg?v=dfd9c437");
  background-size: cover;
  position: relative;
  justify-content: center;
  margin:auto;
  left: 1px;
  width:800px;
  height: 400px;
  z-index: 6;
  bottom:auto;
}

.computamor-three{
    
  background-image: url("https://hoxticos.carrd.co/assets/images/image03.jpg?v=dfd9c437");
  background-size: cover;
  position: relative;
  justify-content: center;
  margin:auto;
  left: 1px;
  width:800px;
  height: 400px;
  z-index: 6;
  bottom:auto;
}

.computamor-four{
    
  background-image: url("https://hoxticos.carrd.co/assets/images/image04.jpg?v=dfd9c437");
  background-size: cover;
  position: relative;
  justify-content: center;
  margin:auto;
  left: 1px;
  width:800px;
  height: 400px;
  z-index: 6;
  bottom:auto;
}

.computamor-five{
    
  background-image: url("https://hoxticos.carrd.co/assets/images/image05.jpg?v=dfd9c437");
  background-size: cover;
  position: relative;
  justify-content: center;
  margin:auto;
  left: 1px;
  width:800px;
  height: 400px;
  z-index: 6;
  bottom:auto;
}

.computamor-six{
    
  background-image: url("https://hoxticos.carrd.co/assets/images/image06.jpg?v=dfd9c437");
  background-size: cover;
  position: relative;
  justify-content: center;
  margin:auto;
  left: 1px;
  width:800px;
  height: 400px;
  z-index: 6;
  bottom:auto;
}

.computamor-seven{
    
  background-image: url("https://hoxticos.carrd.co/assets/images/image07.jpg?v=dfd9c437");
  background-size: cover;
  position: relative;
  justify-content: center;
  margin:auto;
  left: 1px;
  width:800px;
  height: 400px;
  z-index: 6;
  bottom:auto;
}

.computamor-eight{
    
  background-image: url("https://hoxticos.carrd.co/assets/images/image08.jpg?v=dfd9c437");
  background-size: cover;
  position: relative;
  justify-content: center;
  margin:auto;
  left: 1px;
  width:800px;
  height: 400px;
  z-index: 6;
  bottom:auto;
}

.computamor-nine{
    
  background-image: url("https://hoxticos.carrd.co/assets/images/image09.jpg?v=dfd9c437");
  background-size: cover;
  position: relative;
  justify-content: center;
  margin:auto;
  left: 1px;
  width:800px;
  height: 400px;
  z-index: 6;
  bottom:auto;
}

.computamor-ten{
    
  background-image: url("https://hoxticos.carrd.co/assets/images/image10.jpg?v=dfd9c437");
  background-size: cover;
  position: relative;
  justify-content: center;
  margin:auto;
  left: 1px;
  width:800px;
  height: 400px;
  z-index: 6;
  bottom:auto;
}

.computamor-eleven{
    
  background-image: url("https://hoxticos.carrd.co/assets/images/image11.jpg?v=dfd9c437");
  background-size: cover;
  position: relative;
  justify-content: center;
  margin:auto;
  left: 1px;
  width:800px;
  height: 400px;
  z-index: 6;
  bottom:auto;
}

.computamor-twelve{
    
  background-image: url("https://hoxticos.carrd.co/assets/images/image12.jpg?v=dfd9c437");
  background-size: cover;
  position: relative;
  justify-content: center;
  margin:auto;
  left: 1px;
  width:800px;
  height: 400px;
  z-index: 6;
  bottom:auto;
}

.computamor-trece{
  background-image: url("https://hoxticos.carrd.co/assets/images/image12.jpg?v=dfd9c437");
  background-size: cover;
  position: relative;
  justify-content: center;
  margin:auto;
  left: 1px;
  width:400px;
  height:400px;
  z-index: 6;
  bottom:auto;

}

hr {
    border:0; 
    height:30px; 
    background:url("https://pixelsafari.neocities.org/dividers/music/clouds.gif") 0 0; 
}

    #container {
      
         overflow: scroll;
      overflow-x: hidden;
      height: 30em;
      padding: 1rem;
      border: 3px dotted #000;
      background-image: url("https://sadhost.neocities.org/images/tiles/anachdruk28background.gif");
      border-color: #FF69B4;
    }
    
    
     #container1 {
      
         overflow: scroll;
      overflow-x: hidden;
      height: 45em;
      padding: 1rem;
      border: 3px dotted #000;
      background-image: url("https://sadhost.neocities.org/images/tiles/page_background_animated_04.gif");
      border-color: grey;
    }
    
     #container2 {
      
         overflow: scroll;
      overflow-x: hidden;
      height: 30em;
      padding: 1rem;
      border: 3px dotted #000;
      background-image: url("https://sadhost.neocities.org/images/tiles/Background064.gif");
      border-color: #66D6FF;
    }
    
  