/* CSS RESET START */
/*http://meyerweb.com/eric/tools/css/reset/ 2. v2.0 | 20110126
  License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin:         0;
  padding:        0;
  border:         0;
  font-size:      100%;
  font: inherit;
  vertical-align: baseline;
  background:     transparent;
  border:         0;
  outline:        0;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing:  0;
}
/* CSS RESET END */

/* PERSONAL MODIFICATIONS */
body {
  background-color: black;
  color:            white;
}

header {
  font-size:   60px;
  text-align:  center;
  font-family: "Old English Text MT";
  color:       rgba(255, 255, 255, 0.9);
  text-shadow: 0.07em -0.05em 0.2em white;
}

h1 {
  font-size:   25px;
  text-align:  center;
  font-family: "Lucida" Grande, serif;
  color:       rgba(255, 255, 255, 1);
  font-weight: bold;
}

nav.main_navigation {
  width:    100%;
  height:   100%;
}
img#desk, #laptop, #notebook, #phone {
  left:           50%;
  -webkit-filter: grayscale(100%) blur(2px); /* Chrome, Safari */
  filter:         url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale") blur(2px); /* Firefox */
  -moz-filter:    grayscale(100%) blur(2px);
  filter:         gray blur(2px); /* IE 6-9 */
  -ms-filter:     grayscale(100%) blur(2px);
  -o-filter:      grayscale(100%) blur(2px); /* Opera */
}
img#desk:hover, #laptop:hover, #notebook:hover, #phone:hover {
  -webkit-filter: none;
  -moz-filter:    none;
  filter:         none;
  -ms-filter:     none;
  -o-filter:      none;
}
img#desk {
  position:    absolute;
  margin-left: -350px;  /* Half the width of the image */
  z-index:     0;
}
img#laptop {
  width:       250px;
  height:      auto;
  position:    absolute;
  margin-left: -100px;
  margin-top:  30px;
  z-index:     1;
}
img#notebook {
  width:             100px;
  height:            auto;
  position:          absolute;
  -webkit-transform: rotate(20deg); /* Chrome, Safari */
  -moz-transform:    rotate(20deg); /* Firefox */
  -ms-transform:     rotate(20deg); /* IE 6-9 */
  -o-transform:      rotate(20deg); /* Opera */
  margin-left:       150px;
  margin-top:        300px;
  z-index:           2;
}
img#notebook:hover {
  -webkit-transform: rotate(-7deg); /* Chrome, Safari */
  -moz-transform:    rotate(-7deg); /* Firefox */
  -ms-transform:     rotate(-7deg); /* IE 6-9 */
  -o-transform:      rotate(-7deg); /* Opera */
}
img#phone {
  width:             50px;
  height:            auto;
  position:          absolute;
  -webkit-transform: rotate(-20deg); /* Chrome, Safari */
  -moz-transform:    rotate(-20deg); /* Firefox */
  -ms-transform:     rotate(-20deg); /* IE 6-9 */
  -o-transform:      rotate(-20deg); /* Opera */
  margin-left:       -150px;
  margin-top:        250px;
  z-index:           3;
}
img#phone:hover {
  -webkit-transform: rotate(-30deg); /* Chrome, Safari */
  -moz-transform:    rotate(-30deg); /* Firefox */
  -ms-transform:     rotate(-30deg); /* IE 6-9 */
  -o-transform:      rotate(-30deg); /* Opera */
}
