html {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
.user.email {
  background: #ddd;
  color: #555;
  text-align: right;
  padding: 6px;
}
h1 {
  color: #ffd000;
  margin-top: 0;
  margin-bottom: 6px;
}
h2 {
  margin-top: 0;
  margin-bottom: 8px;
}
a {
  color: #515151;
}
a:visited {
  color: #515151;
}
#content > .header {
  position: relative;
  background-image: url('/data/images/backgrounds/header.jpg');
  background-size: 200%;
  height: 128px;
  font-family: "nexa-bold";
  font-size: 40px;
  color: #fff543;
  padding: 32px;
}
#content > .header .center {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.sub-content {
  padding: 96px;
}
a.button.yellow {
  background: #fff543;
  color: #515151;
  padding: 16px 32px;
  text-decoration: none;
  font-family: "nexa-bold";
}
a.button.yellow:hover {
  background: rgba(0, 0, 0, 0);
  color: #ffd000;
  border: 1px solid #ffd000;
}
.gray-section {
  position: relative;
  background: #f2f2f2;
  padding: 64px 128px;
  color: #515151;
  margin-top: 32px;
}
.gray-section:first-child {
  margin-top: 0;
}
.gray-section.small {
  padding: 32px;
}
.gray-section .content {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 800px;
}
.gray-section .content .header {
  color: #515151;
  font-family: "nexa-bold";
  font-size: 48px;
  margin-bottom: 32px;
}
@media only screen and (max-width: 600px) {
  #content > .header {
    height: 96px;
    font-size: 24px;
  }
  .sub-content {
    padding: 16px;
  }
}
