/* 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." */

body {
  background-color: #f79cff;
  color: #4d2052;
  font-family: Monospace;
}

button {
  background-color: #c435b4;
  color: white;
  cursor: pointer;
  border: 1px solid #000000;
  box-shadow: inset 1px 1px 0px 0px #ffa6f5, 
  inset -2px -2px 0px 0px #94468b;
  padding: 4px 7px 4px 6px;
}

#navigation {
  display: inline-block;
  margin: 4px;
  }
#content {
  margin: 4px;
  }