/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Colors I Like:

Ponyo Red: #DB515E

*/

:root {
  --ponyo: #DB515E;
  --bucket: #54ae4e;
  --sasuke: #e5ba4b;
  --bloomers: whitesmoke;
}

body {
  color: whitesmoke;
  background-color: var(--ponyo);
  
  font-size: 20px;
  font-family: ui-rounded;
  width: 70%;
  margin: auto;
}

header {
  padding: 10px;
  width: 100%;
}

footer {
  text-align: center;
  color: white;
}


#house {   /* For all instances of the word House, in reference to House of Leaves. */
  color: #8497e1;
  /* and no underline. Need to find a way
  */
}

a {
  color: var(--bloomers);
}