* {
  box-sizing: border-box;  
}
body {
  background: #123;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 12px;
}

#container {
  background: #c0c8c8;
  padding: 20px;
  width: 750px;
  margin: 0px auto;
  border: 1px solid #cee;
  color: #123;
}

h1,h2,h3 {
  font-variant: small-caps;
  color: #456;
  border-bottom: 1px dotted #456;
}

a {
  color: #567;
  text-decoration: none;
  font-style: italic;
}

a:hover {
  color: #899;
}

pre {
  white-space: pre-wrap;
}

#downloadlist li:first-of-type {
  font-weight: bold;
}
#donateware {
  position: fixed;
  top: 20px;
  right: 20px;
}
#donateware a {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 75px;
  background: #c0c8c8;
  font-size: 20px;
  padding: 30px 20px;
  text-align: center;
}
/*
ul#parties,
ul#parties li {
  padding: 0;
  list-style: none;
  display: inline;
}
ul#parties li::after {
  content: ", ";
}
*/
@media screen and (max-width: 1000px)
{
  #donateware {
    display: none;
  }
}

@media screen and (max-width: 800px)
{
  #container {
    width: 100%;
  }
  ul {
    padding-left: 15px;
  }
  #container {
    padding: 10px;
  }  
}