/* BASE STYLES */
* {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 40px;
  background-color: #cfe6c3; /* light green */
  color: #0a0a0a; /* black */
  font-family: 'Source Sans Pro', sans-serif;
}