  /* CSS to change the color of a specific word */
  
  @font-face {
	font-family: 'Solway';
	src: url(fonts/Solway-Regular.ttf); 
	font-weight: normal;	  
  }

  @font-face {
	font-family: 'Solway';
	src: url(fonts/Solway-Bold.ttf); 
	font-weight: bold;	  
  }
  
  body {
	background-color: black;
	color: white;
	font-family: Solway, sans-serif;
	font-size: 100%;
	margin: 10%;
  }

  h2 {
	font-size: 3em;
  } 
 
  .things {
    color: #95cf92; 
  }
  
  .people {
    color: #369acc; 
  }
  
  button {
	font-family: Palatino, serif;
	font-size: 1.5em;
  }