/*
What do I want to style?
1. For the body, I would like to set the background color, the font style and color.
2. For the links, I want to remove the underline and get rid of the visited text coloring. 
*/

/*
  css from "Farb and Friends" website
  modified by Josh Mundinger
*/

* {
  box-sizing: border-box;
  /*
  font-family: Arial, Helvetica, sans-serif;
  */
}

table {
  width: 100%;
}

table,
th,
td {
  table-layout: fixed;
  border: 1px solid #ddd;
  border-collapse: collapse;
  padding: 5px;
}

th {
  text-align: left;
  /*background-color: #070F59;*/
  background-color: #8a0e06;
  color: white;
}

th:nth-child(1) {
  width: 65%;
}

th:nth-child(2) {
  width: 25%;
}

th:nth-child(3) {
  width: 10%;
}

tr:nth-child(even){background-color: #f2f2f2;}
tr:hover{background-color: #ddd;}

li {
  margin: 10px 0;
}

body {
  width: 90%;
  height: auto;
  margin: 0 auto;
  padding-bottom: 1%;
}

/*
h1,h2,h3,h4 {
  color: #8a0e06;
}
*/
a {
  color: #ff5733;
  text-decoration: none
}

h1,h2,h3,h4 {
  text-align: center;
}


details>summary {
  list-style-type: none;
  outline: none;
  cursor: pointer;
}

details>summary::before {
  content: '+ ';
}

details[open]>summary::before {
  content: '- ';
}

img {
  border: 10px solid transparent;
}

a:hover {
  color: rgb(204, 0, 0);
}
