@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color:#000;
  
}

img {
  pointer-events: none; 
   -khtml-user-select: none;
 -moz-user-select: none; 
 -webkit-user-select: none; 
 -ms-user-select: none; 
 -o-user-select: none; 
 user-select: none;
 }
 
a {
	font-size:15px;
	font-weight:bold;
	color: #CCC;
	text-decoration: none; 
	}
a:visited{
	text-decoration: none; 
	color:#CCC;
}
a:hover{
	text-decoration: none; 
	color:#CCC;
}
a:active{
	text-decoration: none; 
	color:#CCC;
}


/* Style the header */
header {
  background-color: #000;
  padding: 10px;
  text-align: center;
 }

/* Create two columns/boxes that floats next to each other */
/* Mok Loch Disign */
nav {
  float: left;
  width: 50%;
  height: ; /* only for demonstration, should be removed */
  color:#FFF;
  border-top:#333 2px double;
  border-right: #333 2px double;
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
}

/* Mok Loch Digital */
article {
  float: right;
  width: 50%;
  height: ; /* only for demonstration, should be removed */
  color: #FFF;
  border-top:#333 2px double;
  /*border-left: #333 2px double; */
}


/* Clear floats after the columns */
section::after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
footer {
  background-color: #000;
  padding: 10px;
  text-align: center;
  color: white;
  border-top:#333 2px double;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
  nav, article {
    width: 100%;
    height: auto;
  }
}