body {
  background: black;
  color: white;
}

h1 {
  color: yellow;
  text-align: center;
  justify-content: center;
  -webkit-text-stroke: 1px black;
}

h1, h2 {
  text-align: center;
  justify-content: center;
  padding: 10px;
  margin: 10px;
}

textarea {
  width: 500px;
  height: 200px;
}

img {
  border: 2px black;
  border-radius: 10px;
  justify-content: center;
}

.caption {
  font-style: italic;
  justify-content: center;
}

.tartan {
  background-image: url("images/Taylor_Ancient.jpg");
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  width: 100%;
}

.sidebyside {
  display: flex;
  flex-direction: row;
  padding: 10px;
}

@media only screen and (max-width: 1500px) {
  .sidebyside {
    flex-direction: column;
  }
}

.column {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.item {
  padding: 10px;
  margin: 10px;
}

.nav {
  text-align: center;
}

.main {
  background-image: none;
  background: white;
  color: black;
  max-width: 96%;
  margin: 10px;
  padding: 10px;
  border: 2px yellow;
  border-radius: 10px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.max-w20 {
  max-width: 20vw;
}

.max-w30 {
  max-width: 30vw;
}

.max-w40 {
  max-width: 40vw;
}

.max-h50 {
  max-width: 50vh;
}

table, th, td {
  color: black;
  border-collapse: collapse;
  padding: 5px;
}

th {
  background-color: #000000;
  color: white;
}

tr:nth-child(even) {background-color: #c3c2c2;}

tr:hover {
  background-color: slategrey;
}

table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after { 
  content: " \25B4\25BE" 
}

.uncial-antiqua-regular {
  font-family: "Uncial Antiqua", serif;
  font-weight: 400;
  font-style: normal;
}
  
.smaller {
  font-size: 0.6em;
  padding: 0;
  margin: 0;
}

.padded {
  padding: 20px;
}

.button {
  background-color: #ffff66;
    border-radius: 10px;
  color: black;
  padding: 10px;
}

.circle {
  width:40px;
  height:40px;
  border-radius: 50%;
  border:none;
  background-color:black;
  color: #ffff66;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  vertical-align: middle;
  font-size: 30px;
  margin: 20px
}

.social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 10px;
  margin: 10px;
}

.icon {
  margin: 10px;
}

.link {
  color: black;
  font-style: normal;
  text-decoration:underline;
  text-decoration-style: dotted;
}

.link-yellow {
  color: #ffff66;
  font-style: normal;
  text-decoration: none;
}

.link-yellow:hover {
  color: yellow;
  font-style: normal;
  text-decoration: underline;
}

.link-yellow:visited {
  color: #ffff66;
  font-style: normal;
  text-decoration: none;
}

.headline {
  font-size: 4em;
  font-weight: bold;
  padding: 10px;
  margin: 10px;
  color: #ffff66;
  text-align: center;
  justify-content: center;
  -webkit-text-stroke: 1px black;
}

.width-200 {
  width: 200px;
}

.width-100 {
  width: 100%;
}

.banner {
  margin: 20px;
}

.centered {
  text-align: center;
  justify-content: center;
}