/*
 * philosophy.css
 *
 * CSS stylesheet for a philosophical page. Puts things in their places and
 * provides coloring, etc.
 */

body {
  margin: 0px;
  padding: 60px;
  background-color: black;
  color: white;
  font-family: sans-serif;
}

#main {
  position: relative;
  margin: 0px;
  padding: 80px 100px 100px 100px;
  padding: 5% 8% 8% 8%;
  background-color: white;
  color: black;
}

#home {
  position: absolute;
  top: 4px;
  left: 8px;
}

.endsep {
  text-align: center;
}

h1 {
  text-align: center;
  font-size: 18pt;
  font-weight: bold;
}

p {
  text-indent: 2em;
  line-height: 2em;
}

a:link, a:visited {
  text-decoration: none;
  font-weight: bold;
  color: #000000;
}

a:link:hover, a:visited:hover {
  text-decoration: underline;
  color: #000000;
}

