body 
{
	background: black;
	font-family: 'VT323', monospace;
	color: rgb(100, 189, 124);
}


.monitor
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #262626;
	height: 650px;
	width: 900px;
}

.monitor .display
{
	position: absolute;
	top: 50%;
	left: 50%;
	height: 550px;
	width: 800px;
	margin-top: 25px;
	transform: translate(-50%,-50%);
	background: black;
}

.monitor .content
{
    position: absolute;
    top: 50%;
    left: 50%;
    height: 590px; /* change these to make them fit your screen */
    width: 750px;
    transform: translate(-50%, -50%);
    max-height: 400px; /* change this to something else to match the rest of your display */
    overflow-y: auto; /* automatically show the scroll bar when the text is too powerful */
    padding: 10px;
}
 
.monitor .content h1
{
    margin: 0;
    padding: 10px 0 0 20px; /* top right bottom left padding */
    text-align: center /* Remove this line if you don't want it in the center */
 
}

.monitor .content p.pnk
{
	color: rgb(207, 77, 209);
} 

.monitor .content img
{
    /*  you can add some bits in here if you want to fiddle with the pictures */

  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;

}

.monitor .controlButtons
{
	position: absolute;
	top: 10px;
	right: 10px;
}

.monitor .controlButtons button
{
	display: inline-block;
	height: 20px;
	width: 30px;
	background: rgb(0, 171, 171);
	border: 0;
	outline: 0;
}

.monitor .powerButton
{
	display: block;
	height: 18px;
	width: 40px;
	background: rgb(87, 255, 87);
	position: absolute;
	bottom: 0;
	right: 35px;
	border: 0;
	outline: 0;
}


.monitor .head 
{
	position: absolute;
	top: 10px;
	left: 50px;
	width: 100%;
	height: 50px;
	text-align: left;
	color: rgb(87, 255, 87);
}


.dropdownTrigger {
	font-family: 'VT323';
	border: 0;
	border-left: 5px solid rgb(255, 87, 255);
	background: none;
    color: rgb(87, 255, 87);
    padding: 0px;
    font-size: 20px;
    width: 80px;
}

.dropdownTrigger:hover { background: #287428}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    border: 5px solid rgb(255, 87, 255);
    position: absolute;
    width: 200px;
    z-index: 1;
    color: rgb(87, 255, 87);
    text-align: left;
    background:black;
}

.dropdown-content a {
	font-family: 'VT323', monospace;
    padding: 12px 10px;
    text-decoration: none;
    color: rgb(87, 255, 87);
    display: block;
}

.dropdown-content span {
	color: rgb(255, 87, 255);
	font-weight: bolder;
	margin-right: 5px;
}

.dropdown-content a:hover {background-color: #287428}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropdowntrigger {background-color: #287428;}

@font-face {
	font-family: "system";
	src: url("./system.ttf") format("ttfs");
}









146z5▬