/*
	Theme Name: CGD
	Theme URI: http://cgd.no
	Description: 
	Version: 0
	Author: CGD
	Author URI: http://cgd.no
	Tags: Blank, HTML5, CSS3
*/

/*border-box*/
table, div, p, header, nav, section, body, span, li, ul , input, a, img, textarea{-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

@font-face{
	font-family: OpenSans;
	src: url('fonts/OpenSans-Regular.ttf');
}
@font-face{
	font-family: OpenSans;
	src: url('fonts/OpenSans-Bold.ttf');
	font-weight:bold;
}
body {
	color: #2b2b2b;
	font: 80%/20px OpenSans, "Lucida Grande", Lucida, Verdana, sans-serif;
	min-height: 101%;
	width: auto;
	position: relative;
	background: url(pattern.png) repeat #f0f0f0;
	margin: 0;
	padding: 0 1%;
  color: rgb(10,10,10);
}
p{
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
}
.effekt{
  opacity: 0.9;
  transition-duration: 1s;
  transform: scale(0.95, 0.95);
}
.effekt:hover{
  opacity: 1;
  transform: scale(1, 1);
}