/* 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 {
  width:60%;
  padding-top:30px;
  margin:auto;
}

#container {
  background:grey;
  border:1px solid grey;
  border-radius: 2px;
  margin:10px;
}

#headImg {
  width:99%;
  height:150px;
  background-image:url("https://64.media.tumblr.com/e6fb3911a34cad7756064cf32a53c500/tumblr_p0zczvHGuF1utmqvso5_1280.pnj");
  background-position: center;
  border:1px solid black;
  border-radius: 2px;
  margin:auto;
}

#headContentWrap {
  background-color: white;
  border:1px solid black;
  border-radius: 2px;
  padding: 3px;
  text-align:center;
  text-transform:uppercase;
}

/* COLUMNS */
#left, #center, #right {
  float:left;
  padding: 10px 3px 10px 3px;
  box-sizing:border-box;
  background:grey;
  padding:3px;
  border-radius: 2px;
}

#left { width:30%; color:black; }
#center { width:60%; color:black; }
#right { width:10%; color:black; }

#pfp {
 width:50%;
 padding:3px;
 border-radius:100px;
 overflow: hidden;
 margin:auto;
}

.text {
  background:#fff;
  border:1px solid black;
  border-radius:2px;
  box-shadow:2px 3px black;
  padding:10px;
  margin:10px;
}

.title {
  font: 11px monospace;
  text-transform:uppercase;
  color:#fff;
  background:black;
  letter-spacing:3px;
  padding:3px;
  margin:2px;
}