/* 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: #000 url("https://www.vindicariscomic.com/files/site/gridbg.png") center center no-repeat fixed;
  background-size: cover;
  width: 100%;
  color: white;
  font-family: "Courier New";
  font-size:18px;
}

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

.buffer {
  min-height:30px;
}

/* unvisited link */
a:link {
  color: #FF004A;
}

/* visited link */
a:visited {
  color: #FF004A;
}

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


/* 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;
 }
}