/* CSS general stylesheet for kevinmatz.com
   Copyright 2015-2018, Kevin Matz, all rights reserved.
*/

body {
  /* background-color: #313131; */
  margin: 0px;
  
  color: black;
  text-decoration: none;
  font-family: "Open Sans";
  font-size: 12pt;
  font-weight: 400;

  /* Background image technique from: http://css-tricks.com/perfect-full-page-background-image/ */
  background: url(../images/3118WebSized_4_NoKevin1.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.header-container {
    width: 100%;
	position: fixed;
    top: 0px;
	
	background: #000000; /* old browsers */
	background: -ms-linear-gradient(top, #444444, #000000);  /* ie11+ */
    background: -moz-linear-gradient(top, #444444 0%, #000000 100%); /* firefox */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#444444), color-stop(100%,#000000)); /* webkit */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#000000', GradientType=0 ); /* ie pre-11, doesn't seem to work */
    background: -o-linear-gradient(top, #444444 0%, #000000 100%); /* opera */
}

.header-contents {
    padding: 20px 30px 20px 30px;	
}

.contentoverlay {
    /* border: 1px solid #000000; */
    margin: 150px 0px 80px 0px;
	padding: 0px 0px 0px 0px;
}

.contentheader {
	background: #666666;
    color: #FFCC00;
    margin: 0px 0px 0px 0px;
	padding: 18px 35px 18px 35px;
	font-size: 18pt;
    font-weight: 600;  
}

.contentbody {
	background: white;
    color: black;
    margin: 0px 0px 0px 0px;
	padding: 33px 35px 33px 35px;
	
	overflow: auto;    /* To make the white background extend to the bottom of the page to cover-behind all the content... */
}

.blogcontentoverlay {
    /* border: 1px solid #000000; */
    margin: 94px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.alignleft {
	float: left;
}

.alignright {
    float: right;
}

a.navlink {
  color: black;
  text-decoration: none;
  font-family: "Open Sans";
  font-size: 14.5pt;
  font-weight: 800;
  text-shadow: 1px 1px white;
}

a.navlink:hover { color: #f90; }

table.navlinksgroup td {
  padding: 0px 0px 0px 0px;
}

a.headernavlink {
  color: #FFCC00;
  text-decoration: none;
  font-family: "Open Sans";
  font-size: 13pt;
  font-weight: 800;
}

a.headernavlink_current {
  color: white;
  text-decoration: none;
  font-family: "Open Sans";
  font-size: 14pt;
  font-weight: 800;
}

a.headernavlink:hover { color: #ffffff; }

table.headernavlinksgroup td {
  padding: 0px 0px 0px 0px;
}

.headernavlinksspacer {
  padding: 0px 10px 0px 10px;
}

.floatleft {
    float: left;
	width: 53%;
	height: 100px;
}

.floatright {
    float: left;
    width: 47%;
	height: 100px;
}

.portfolio-ruby {
    color: #999999;
	font-size: 10pt;
	font-variant: small-caps;
	font-style: italic;
	letter-spacing: 2pt;
}

.kevin-subtitle {
    color: #222222;
	font-size: 15pt;
	font-variant: small-caps;
	font-style: italic;
	/* font-weight: bold; */
	letter-spacing: 3pt;
}

h1 {
    line-height: 100%;
	margin-bottom: 0px;
}

h2 {
    font-weight: bold;
	margin-top: 0pt;
	margin-bottom: 7pt;
	letter-spacing: -0.5pt;
}

.website-thumbnail {
    width: 550px;
	border: 1px solid #999999;
	box-shadow: 9px 9px 10px 3px #888888;
	margin: 0px 0px 12px 0px;
}

.bookpic-thumbnail {
    width: 520px;
	box-shadow: 9px 9px 10px 3px #888888;
	margin: 0px 0px 12px 0px;
}

.headshot-thumbnail {
    width: 260px;
	box-shadow: 9px 9px 10px 3px #888888;
	margin: 0px 48px 12px 0px;;
}

.section-spacer-div1 {
    height: 36px;
}

.section-spacer-div2 {
    height: 56px;
}

#blogarticle {
	font-family: "Times New Roman", "Times Roman", "Times", serif;
	font-style: normal;
	font-size: 1.2em;
	font-weight: normal;
	font-variant: normal;
	color: black;
}

#blogarticle > h1 {
  font-family: "Open Sans";
  font-weight: 900;
  font-size: 3em;
  letter-spacing: -0.05em;
}

.blog-article-date {
  font-family: "Open Sans";
  font-weight: bold;
  font-size: 1em;
}

.blog-article-author {
  font-family: "Open Sans";
  font-weight: bold;
  font-size: 1em;
}

.floatyblock {
  /* display: inline; */
  float: left;
  padding: 5px; /* if you want space between the images */
}


