@font-face { font-family: Title;
	     src: url("fbsbltc.ttf");
    	   }
@font-face { font-family: nointro;
	     src: url("thesorden.ttf");
	   }
@font-face { font-family: intro;
	     src: url("ATTRACTMOREWOMEN.ttf")
	   }
@font-face {
             font-family: skates;   
	     src: url("logoskate.ttf")
           }	     
@font-face {
            font-family: sourcecode;
	    src: url("source.otf")
}			      
/* Cuerpo de pagina */

html, body {
  margin: auto;
  padding: 10px;
  width: 100%;
  overflow-x: hidden;
}

header {
position: absolute;
  top: 15px;
margin-bottom: 50px;
  left: max(600px, 50%);
  transform: translateX(-50%);

  display: block;
  text-align: center;

  max-height: 400px;
  color: #4169E1;
  font-family: Title;
  font-size: 150%;
}

.container{
  position: fixed;     /* válido y necesario */
  display: block;
  margin-bottom: 0;
  overflow: hidden;
}

#content {
     position: absolute;     /* posición controlada */
  top: 0;
  left: 0;                /* izquierda real */

  width: auto;
  min-height: 700px;

  font-family: intro;
  font-size: 25px;
  font-weight: 600;

  padding-top: 3%;
  margin: auto;

  overflow-x: hidden;
  overflow-y: auto;
	
    }

    h2 {
	font-family: 'Open Sans';
	font-size: 30px;
	color: green;
	
    }
    
    ol{
	padding-left: 10px;
	list-style-type:none;
 }
    li{
	border-top: 2px solid black;
	margin: 2px;
	margin-top: 5px;
    }
   
    #explorer {
	border: none;
	outline: none;
	background-color: #FFE4E1;
	position: fixed;
    }
    
    body {
	 background-color: #FFE4E1;
  color: black;
  font-family: 'Open Sans', sans-serif;

  min-width: 1300px; /* 👈 importante */
  overflow-x: hidden;
    }
   
  #stage {
  position: relative;
  width: 1400px;
  margin: 250px auto 0 auto;
}
    
.background {
	position: relative;
  display: block;

  width: 900px;
  max-width: 900px;
  margin: 150px auto 0 auto;  /* arriba fijo, centrado */

  background-image: url("./Archivo pagina/7824.gif");
  background-repeat: repeat;
  border-radius: 20px;

  min-height: 1000px;   
}

.sidebar {
	  overflow-x: hidden; /* Disable horizontal scroll */
	  overflow-y: hidden;
	  padding-top: 30px;
	  bottom: 50px;
	  top: 100px;
	  margin-top: auto;
	  left: 0;
	  z-index: 1;
	  position: fixed;
	  padding-bottom: auto;
	  clear: top;

    }

   #title-bar{
	background: linear-gradient(
	    90deg,
	    #000080,
	    #1084d0
	);
	margin-left: -15px;
	margin-top: -20px;
	padding-top: 5px;
	padding-bottom: 5px;
	max-height: 15px;
	background-position: top 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-right: 0;
	border-left: 0;
	border-bottom: 2px solid black;
	border-top: 2px solid white;
	font-family: sourcecode;
    }
    
    aside {
	display: block;
	position: fixed;
	margin-top: 25px;
	width: 170px;
	padding-top: 20px;
        padding-left: 15px;
        margin-left: 15px;
	height: 300px;	
	background-color: white;
	border-left: 2px solid silver;
	border-right: 3px solid gray;
	border-bottom: 3px solid gray;
	
    }
    
    nav{
	
    }

    .barraextra{

  width: 240px;

  margin-left: auto;      /* empuja a la derecha */
  margin-top: 40px;

  padding-right: 10px;

  overflow: hidden;

  position: sticky;
  top: 150px;          /* mismo offset que background */

  width: 240px;
    }

    #cds {
	margin-left: 10px;
	margin-top: 15px;
    }
    
    .clearfix {
	  clear: top;
	  width: 100%;
	  left: 2%;
	  margin-left: 0;
	  margin-right: 0;
	 
    } 
    footer {
	width: 90%;
	overflow-x: hidden;
	border-top: 1px solid black;
	margin-top: 20px;
	

    }

 
/* scrollbar */

    -webkit-overflow-scrolling: auto;    
    ms-overflow-style: none;
    -webkit-backface-visibility: hidden;

    -webkit-scrollbar {
  width: 24px;
}
    -webkit-scrollbar:horizontal {
  height: 17px;
}

    ::-webkit-scrollbar-corner {
  background: var(--button-face);
}

    -webkit-scrollbar-track {
  background-image: svg-load("icons/scrollbar-background.svg");
}

    -webkit-scrollbar-thumb {
  background-color: var(--button-face);
  box-shadow: var(--border-raised-outer), var(--border-raised-inner);
}

-webkit-scrollbar-button:horizontal:start:decrement,
-webkit-scrollbar-button:horizontal:end:increment,
-webkit-scrollbar-button:vertical:start:decrement,
-webkit-scrollbar-button:vertical:end:increment {
  display: block;
}

-webkit-scrollbar-button:vertical:start {
  height: 17px;
  background-image: svg-load("icons/button-up.svg");
}
-webkit-scrollbar-button:vertical:end {
  height: 17px;
  background-image: svg-load("icons/button-down.svg");
}
-webkit-scrollbar-button:horizontal:start {
  width: 16px;
  background-image: svg-load("icons/button-left.svg");
}
-webkit-scrollbar-button:horizontal:end {
  width: 16px;
  background-image: svg-load("icons/button-right.svg");
}

