/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: #2DA7C8 url("http://talonhunters.com/files/imagessite/background2.png") center center no-repeat fixed;
  background-size: cover;
  width: 100%;
  color: Black;
  font-family: 'THfont';
  font-size:20px;
}

@font-face {
  font-family: 'THfont';
  src: url(/Fonts/SF_Cartoonist_Hand_SC.ttf);
}

@font-face {
  font-family: 'THfont';
  src: url(/Fonts/SF_Cartoonist_Hand_SC_Bold.ttf);
  font-weight: bold;
}



.box {
  background-color: #D0BA9D;
  max-width: 600px;
  margin: auto;
  padding: 20px 100px 30px 100px;
  box-shadow: 0px 0px 20px #340330;
}

.buffer {
  min-height:30px;
}

/* unvisited link */
a:link {
  color: #0C6373;
}

/* visited link */
a:visited {
  color: #0C6373;
}

/* mouse over link */
a:hover {
  color: #340330;
}


/* Character Profile Pages */

.profileimage {
  max-width: 200px;
  float: left;
  padding: 0 20px 0 0;
}

.profiledata {

}


/* MOBILE FORMAT */
@media (max-width:820px) {
 
 .box {
    padding: 10px 20px 20px 20px;
    outline: 0 !important;
 }
}