@charset "utf-8";
/* CSS Document */

img.align-center{
	display: block;
	margin: 10px auto;
}

body{
	/*font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";*/
	font-family: 'Oxygen', 'Oxygen Light';
	font-size: 16px;
	background-color: rgb(126, 106, 100); }
    h1 {font-size: 400%;}
	h2 {font-size: 300%;}

/* Container holding the image and the text */
.container {
  position: relative;
  text-align: center;
  color: white;
}

/* Bottom left text */
.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

/* Top left text */
.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

/* Top center text */
.top-center {
  position: absolute;
  top: 40%;
  left: 50%;
  margin-top: 0px;
  transform: translate(-50%, -50%)
}


/* Top right text */
.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

/* Bottom right text */
.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

/* Centered text */
.centered {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.shad{
	text-shadow: 6px 6px 5px #111111;
}