@charset "utf-8"
/* CSS Document */
/* Color Scheme
 - Black #000000 - (RGB 0,0,0)
 - Crimson #660000 - (RGB 102,0,0)
 - Matrix Green #00C800 - (RGB 0,200,0)
 - Navy Blue #00004C - (RGB 0,0,76)
 - White #FFFFFF -(RGB 255,255,255)
 - Gray #7F7F7F - (RGB 127,127,127)
The sizes are based upon common device resolution from the most common smartphone(800x480) to the most common laptop(1366x768)
*/
/* Create extra spaces using &nbsp; */
body{
}
#main{
  background-color: #000000;
  color: #ffffff;
}
/* Header Styles Start*/
header{
  width: 95%;
  text-align: center;
  color: #FFFFFF;
}
/* Header Styles End */

/* Section Styles Start */
section{
  margin-left: 1em;
  width: 30%;
  align-content: center;
  float: left;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  display: block;
}
/* Section Styles End */

/* Article Styles Start */
article{
  padding-left: 1em;
  padding-right: 1em;
  border: 3px solid white;
  border-radius: 50px;
  height: 375px;
  background-color: #7f7f7f;
  opacity: 0.9;
  width: 250px;
}
article:hover{
  box-shadow: 0px 0px 100px #00C800;
  border: 3px solid #00C800;
  border-radius: 50px;
}
article a{
  color: #ffffff;
}
article a:hover{
  color: #00ff00;
  text-shadow: 1px 1px 0px #ffffff, 1px 0px 1px #000000, 0px 1px 1px #000000;
}
/* Article Styles End */

/* Div Styles Start */
div{
}
#backdrop{
  background-image: url(background/matrix_map.png);
  width: 95%;
  height: 500px;
}
/* Div Style End */

