* {
  box-sizing: border-box;
}

body {
  background: #f1f1f1;
  margin: 0;
  font-family: 'Raleway', sans-serif;
}

p {
  margin: 0 0 1.5em 0;
  padding: 0;
}

a {
  color: #FF4E50;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  background-color: #E1F5C4;
  border-bottom: 1px solid #CBD2DC;
}

.external-links a {
	font-weight: normal;
	color: #bbb;
	text-transform: uppercase;
	display: inline-block;
	margin-right: 20px;
	font-size: 13px;
}

.external-links a:hover {
	color: #666;
}

header {
  background-image: url('brian-barbutti.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 280px;
  line-height: 280px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

header h1 {
  font-family: 'Rozha One', serif;
  font-size: 52px;
  font-weight: normal;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);

  color: #fff;
  margin: 0;
  padding: 0;
}

#main {
  width: 70%;
  margin: 0 auto;
  
  font-size: 15px;
  line-height: 1.5em;
  color: #777;
  padding: 3em;
  background: #fff;
  border: 1px solid #eee;
  border-bottom: 3px solid #ddd;

  
/*  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
  -moz-column-gap: 3em;
  -webkit-column-gap: 3em;
  column-gap: 3em;
*/}

@media (max-width: 768px) {
  header {
    height: 150px;
    line-height: 150px;
  }
  
  header h1 {
    font-size: 32px;
    text-align: left;
    padding-left: 12%;
  }
  
  #main {
    width: 100%;
    
/*    moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;*/
  }
}