/* 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-color: white;
  color: black;
  font-family: Verdana;
}
.music{
  margin-top: 12px;
  padding: 8px 0px;
  text-align: center;
}

.music iframe{
  width: 100%;
  height: 120px;
  border: none;
  opacity: 0.9;
}

.nowplaying{
  font-size: 14px;
  margin-bottom: 5px;
  color: #657346;
  font-style: italic;
}

@font-face {
  font-family: 'Triforce';
  src: url('fonts/Triforce.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

#header {
  width: 460px;
  margin: 50px auto 0 auto;
  text-align: center;
}

#header h1 {
  font-family: 'Triforce', serif;
  font-size: 45px;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  display: inline-block;
  -webkit-text-stroke: 0px #000;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* Journal header override */
.journal #header h1,
.about #header h1,
.gallery #header h1,
.links #header h1{
  color: #415b2f;
}