/* === Elements === */

body {
   background-color:  GAINSBORO;
}

hr { 
  color:  rgb(160,82,45);
  border-color:  rgb(160,82,45);
  background-color:  rgb(160,82,45);
  border-width: 2px;
}

h1, h2, h3 {
  font-family: sans-serif;
  margin: 10px 30px 0px 30px;
}

h1 {
    text-align:center;
}

img {
    width: 100%;
    height: auto;
}

li {
    font-family: sans-serif;
/*    font-size: 140%;  */
}

p {
    font-family: sans-serif;
    font-size: 120%; 
    margin: 1.5% 2% 0 3%;
}

table {
    width: 100%;
/*
    margin-left: auto;
    margin-right: auto;
*/
    border: 1px solid black;
   background-image: url("paper.jpg");i
}

td {
    border: 1px solid black;
}

/* === Styles === */

.button {
  display: inline-block;
  padding: 5px 25px;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: rgb(160,82,45);
  border: none;
  border-radius: 10px;
  box-shadow: 6px 10px 14px #444;
  margin: 10px 0px 0px 10px;
}

.button:hover {
    background-color: #3e8e41
}

.button:active {
  background-color: #3e8e41;
  box-shadow: 2px 4px 8px #444;
  transform: translateY(4px);
}

.card {
  box-shadow: 4px 8px 12px #444;
  margin: 10px 10px 15px 10px;
  border-radius: 10px;
  padding: 0 0 15px 0;
}

.dropcap {
    margin-left: 4%;
    margin-right: 4%;
    font-family: sans-serif;
    font-size: 120%; 
}

.dropcap:first-line {
    font-variant: small-caps;
    font-size: 120%; 
}

.dropcap:first-letter {
    font-size: 4.5em;
    float: left;
    font-variant: none;
    font-family: serif;
    border-style: outset;
    border-width: 4px;
    border-color:  rgb(160,82,45);
    margin-right: 4px;
}

.floatleft {
  float: left;
  margin: 1.5% 1.5% 0 3%;
  padding:1px;
  border:1px solid black;
  text-align:center;
  font-family:sans-serif;
  font-weight:bold;
  font-size:100%;
}

.floatright {
  float: right;
  margin: 1.5% 3% 0 1.5%;
  padding:1px;
  border:1px solid black;
  text-align:center;
  font-family:sans-serif;
  font-weight:bold;
  font-size:100%;
}

.max100 {
    max-width: 100%;
    height: auto;
}

.max45 {
    max-width: 45%;
    height: auto;
}

.max30 {
    max-width: 30%;
    height: auto;
}

.max15 {
    width: 15%;
    height: auto;
}

