/*******************************************
 * CSS Reset
 ******************************************/

/* http://meyerweb.com/eric/tools/css/reset/
   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;
}
/* 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;
}

/*******************************************
 * Local Styles
 ******************************************/

h1 {
	font-family: sans-serif;
  font-size: xx-large;
}

h2 {
	font-family: sans-serif;
	font-size: x-large;
}

h3 {
	font-family: sans-serif;
	font-size: large;
}

p {
  margin: 1em auto 0 auto;
}

header {
  display: table;
  table-layout: fixed;
  width: 100%;
	background-color: #050505;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

header>a {
  display: table-cell;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-family: sans-serif;
  padding: 1em 0;
}

header>a:hover {
  color: #deb100;
  -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

section {
	max-width: 100ch;
  margin: 0 auto;
}

article {
  margin: 1em auto;
}

#home {
  background: url("coffee.jpg");
  background-size: cover;
  height: 500px;
}

#home>div {
  padding: 100px 0 0 50px;
}

#intro {
  margin: 2em auto;
  text-align: center;
}

#intro .line2 {
  font-weight: bold;
}

#aboutservices {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-spacing: 1ch 0;
}

#aboutservices div {
  display: table-cell;
  background-color: #f9f9f9;
  padding: 2em;
}

#aboutservices h2 {
  font-weight: bold;
  text-transform: uppercase;
}

#aboutservices hr {
  width: 4em;
  margin: 1em auto 1em 0;
}

#aboutservices ul {
  list-style: disc inside;
}

#contact {
  display: table;
  background-color: #f9f9f9;
  padding: 2em;
}

#contact h1 {
  text-align: center;
}

#contact label {
  font-family: sans-serif;
}

#contact input {
  font-family: monospace;
}

footer {
  width: 100%;
  text-align: center;
  font-size: small;
  background-color: #050505;
  color: #FFFFFF;
  padding: 2em 0;
}

.block-input {
  display: block;
  width: 100%;
  margin: 1ch auto 1ch 0;
}