/* background setup */

.background {
  background-repeat: no-repeat;
  /* custom background-position */

  background-position: 50% 50%;
  /* ie8- graceful degradation */

  background-position: 50% 50%\9 !important;
}
/* fullscreen setup */

html,
body {
  /* give this to all tags from html to .fullscreen */

  height: 100%;
}

.fullscreen,
.content-a {
  width: 100%;
  min-height: 100%;
}

.not-fullscreen,
.not-fullscreen .content-a,
.fullscreen.not-overflow,
.fullscreen.not-overflow .content-a {
  height: 100%;
  overflow: hidden;
}
/* content centering styles */

.content-a {
  display: table;
}

.content-b {
  display: table-cell;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding-left: 50px;
  padding-right:50px;
}

.content-c {
  display: table-cell;
  position: relative;
  vertical-align: top;
  text-align: center;
  padding-top: 10%;
}

.content-footer {
  display: table-row;
  position: relative;
  vertical-align: bottom;
  text-align: right;
}

.content-footer div {
  display: table-cell;
  position: relative;
  vertical-align: bottom;
  text-align: right;
  padding:4px;

  margin: 0;
  font-size: 10px;
  line-height: 10px;
  color: #aaa;
  opacity: 0.60;
}

.content-footer div a {
  text-decoration:none;
  color: #ccc;
}
/* visual styles */

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight:300;
  font-size: 20px;
  /*line-height: 100px;*/
  color: #ddd;
  text-align: center;
  /*text-shadow: 3px 3px 2px rgba(30, 30, 30, 0.4);*/
}

h1 {
  font-size: 32px;
  font-weight:600;
  /*background:#000;
  background:rgba(0,0,0,0.6);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);
  -ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000)";*/
}

section h1 {
  color:#5a5a5a;
}

h2 {
  font-size: 52px;
  font-weight:300;
  /*background:#000;
  background:rgba(0,0,0,0.6);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);
  -ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000)";*/
}

section h2 {
  color:#5a5a5a;
}


section p {

  color:#5a5a5a;

  /*background:#000;
  background:rgba(0,0,0,0.6);

  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);
  -ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000)";*/

}

section ul {

  color:#5a5a5a;

}

section p a {
  color:#5a5a5a;
}

p a {
  color:#ddd;
}

section {
  background:#eee;
}

.not-fullscreen {
  height: 50%;
}
