/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
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{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}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:none}table{border-collapse:collapse;border-spacing:0}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*

Some Stuff:
-webkit-overflow-scrolling:touch;

*/



body {
	background: #f3f3f3;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #333;
	font-size: 18px;
	line-height: 27px;
}

a {
  color: #0dacda;
  text-decoration: none;
}

.box {
	width: 100%;
	max-width: 960px;
	margin: 60px auto;
}

.box .content {
  float: left;
  width: 100%;
  background: #fff;
  text-align: right;
  border-bottom: 10px solid #eee;
  padding: 80px;
}

.content h1 {
  float: left;
  width: 100%;
  font-size: 45px;
  line-height: 54px;
  font-weight: bold;
}

.content h2 {
  float: left;
  width: 100%;
  font-size: 27px;
  line-height: 36px;
  border-bottom: 2px solid #333;
  padding: 0 0 20px 0;
  margin: 0 0 50px 0;
}

.content p {
  float: left;
  width: 100%;
  font-size: 21px;
  line-height: 35px;
}

.content p .foo {
  font-family: Arial, Helvetica, sans-serif;
  color: #ccc;
  text-transform: uppercase;
  font-size: 15px;
  width: 100px;
  float: right;
}

.content p .bar {
  float: right;
  width: 240px;
}

.content .portfolio {
  float: left;
  clear: both;
  width: 100%;
  text-align: center;
  background: #0dacda;
  margin: 60px 0 0 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  padding: 30px 0;
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 8px;
}

@media only screen and (max-width: 480px) {

.box {
	margin: 0 auto;
}

 .box .content {
    padding: 30px;
  }

}
