html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	margin: 0;
	color: #444;
	line-height: 1.5;
	min-height: 100vh;
	padding: 100px;
	display: flex;
	align-items: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

dl {
    text-align: left;
    width: 32%;
    margin: 0;
    padding-bottom: 30px;
    display: inline-block;
    vertical-align: top;
}

.pad {
	padding-right: 30px;
}

dt {
    font-weight: 700;

/*
    text-transform: uppercase;
    letter-spacing: 1px;
*/
}
dd {
    margin: 0;
/*     padding-top: 10px; */
}


h1, h2, h3, h4, h5, strong, dt {
	font-weight: 500;
}

h1 {
/*
    text-transform: uppercase;
    letter-spacing: 3px;
*/
    line-height: 1.2;
    margin-bottom: 30px;
    font-size: 1em;
    margin-top: 0;
}

h3 {
    clear: both;
    border-top: 1px solid #ccc;
    padding-top: 30px;
        font-size: 1em;
        width: 30px;
/*
    text-transform: uppercase;
    letter-spacing: 2px;
*/
    text-align: left;
}

a {text-decoration: none; color: #444;}
a:hover {text-decoration: none; border-bottom: 1px solid;}

h4 a {
    font-weight: normal;
    border: none;
}

p {
  width: 32%;
  display: inline-block;
  vertical-align: top;
  margin-top: 0;
}


.bottom {
    clear: both;
/*     padding-top: 30px; */
    width: 100%;
}

.bottom:before {
  border-top: 1px solid #ccc;
  width:30px;
  content: '';
      display: block;
    padding-bottom: 30px;
}

@media screen and (max-width: 960px) {

  body {
  	padding: 50px;
  }
  

}

@media screen and (max-width: 800px) {

  body {
  	padding: 30px;
  }
  
  dl, p {
  	width: 100%;
  	clear: both;
  }

}