* {
	margin: 0;
	padding: 0;
}
html {
	height: 100%;
}
body {
	font: 12px/18px Arial, Tahoma, Verdana, sans-serif;
	height: 100%;
	color: black;
}


/* Responsive Full Background Image Using CSS */

body {
  /* Location of the image */
  background-image: url(background.jpg);
  
  /* Image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Image doesn't repeat */
  background-repeat: no-repeat;
  
  /* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based on its container's size */
  background-size: cover;
  
  /* Pick a solid background color that will be displayed while the background image is loading */
  background-color:#464646;
  
  /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */
}

/* For mobile devices */
@media only screen and (max-width: 767px) {
  body {
    /* The file size of this background image is 93% smaller
     * to improve page load speed on mobile internet connections */
    background-image: url(background-mobile.jpg);
  }
}


a {
	color: blue;
	outline: none;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

p {
	margin: 0 0 18px
}

img {
	border: none;
}

input {
	vertical-align: middle;
}

div.centered, div.centered2, div.centered3 {
text-align:center;
display: block;
margin-left: auto;
margin-right: auto;   
}
    
.centered {
  fill: #3798d3;
  stroke: rgba(39, 129, 188, .9);
  stroke-width: .4;
  -webkit-filter: drop-shadow( 5px 4px 2px rgba(0, 0, 0, .3));
  filter: drop-shadow( 5px 4px 2px rgba(0, 0, 0, .3));
}

.centered2 {
  fill: url(#stripes);
  -webkit-filter: drop-shadow( 5px 4px 2px rgba(0, 0, 0, .3));
  filter: drop-shadow( 5px 4px 2px rgba(0, 0, 0, .3));
}

.centered3 {
  fill: #f9f9f9;
  stroke-width: .5;
  stroke: url(#stripes);
}





.icons--gradient .icon {
  stroke-width: 3;
  stroke: url(#stripes);
  }

.icons--gradient2 .icon {
  stroke-width: 3;
  stroke: url(#stripes2);
  }
  
  
  
  

