/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
  
body {
  background-image: url('/hacknet/HackNet_Default.png');
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
  image-rendering: pixelated;
  
  color: white;
  font-family: "Consola";
}
@font-face {
    font-family: 'Consola';
    src: url('/fonts/CONSOLA.TTF');
}
.hacknet {
	display: grid;
    height: 100%;
    grid-template-columns: 17fr 45fr 38fr;
}
.ram {
	height: 85vh;
	/*width: 17vh;*/
	border: 2px solid #1a2e42;
}
.col-dis-net {
	display: grid;
  height: 100%;
  grid-template-rows: 75vh;
}
.display {
	height: 75vh;
  /*width: 45vh;*/
  border: 2px solid #1a2e42;
}
.netmap {
	height: 20vh;
  border: 2px solid #1a2e42;
}
.terminal {
	height: 95vh;
  border: 2px solid #1a2e42;
}