html, body {
	margin: 0;
	height: 100%;
	overflow: hidden;
	background: white;
	background-repeat: no-repeat;
    background-attachment: fixed;
  	font-family: "Roboto Mono", monospace, "Courier New", monospace, "Helvetica", sans-serif;
  	font-size-adjust: .5;
}
.vt323-regular {
	font-family: "VT323", monospace;
	font-weight: 400;
	font-style: normal;
  }

p {
	margin: 0;
	padding: 0;
	width: 100;
}

a:link, a:visited {
	text-decoration: none;
	color:white;
}

a:active, a:hover {
	text-decoration: none;
	color:green;
}

.hidden{
	display: none;
}
  
.w-100{
	width: 100%;
}
  
.mb-10{
	margin-bottom: 10px;
}

/* --------------------------- animations --------------------------- */
img {
	animation-name: staggerLoad;
	animation-duration: 2s;
}
canvas {
	width: 100%;
  	height: 100%;
}

@keyframes staggerLoad {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.staggered-load:nth-child(2) {
    animation-delay: 0.2s; /* Adjust the delay for each subsequent image */
}

.staggered-load:nth-child(3) {
    animation-delay: 0.4s; /* Adjust the delay for each subsequent image */
}

.autoscrollable-wrapper {
	overflow: auto;
	max-height: 100%;
	display: flex;
	flex-direction: column-reverse;
  }

/* ------------------------------------------------------------ */

/* --------------------------- menu --------------------------- */
#console {
	background-color: black;
	margin-top: 5px;
	margin-left: 5px;
	margin-bottom: 5px;
	width:39.9%;
	height:69%;
	float:left;
	z-index: 2;
}

#screen {
	background-color: black;
	margin-top: 5px;
	margin-right: 5px;
	width:59%;
	height:98.6%;
	float:right;
	z-index: 2;
}

#commands {
	background-color:black;
	margin-left: 5px;
	width:39.9%;
	height:28.9%;
	float:left;
	z-index: 2;
}
/* ------------------------------------------------------------ */

/* --------------------------- contents --------------------------- */
#wrapper_console {
	width:95%;
	margin: 0 auto;
	color: white;
	scrollbar-width:none;
}

#wrapper_screen {
	width:98.6%;
	height:100%;
	margin: 0 auto;
	background-color:none;
}

#wrapper_commands {
	width:95%;
	margin: 0 auto;
	color: white;
}

#scan {
	display: none;
}

#otherActions {
	display: none;
}
/* ------------------------------------------------------------ */
