* {
  box-sizing: border-box;
}
body {
  background-color: #fff4e6;
  font-family: sans-serif;
  color: #4b3832;
}
/* HEADER STYLE */
.pagetitle {
  display: inline;
}
.backLink {
  font-size: 20px;
  display: inline-block;
  padding: 20px 20px;
  text-decoration: none;
  color: #854442;
}
.backLink:hover {
  font-style: italic;
  font-weight: bold;
  font-size: 22px;
  cursor: pointer;
}
/* LINKS */
.link {
  color: #854442;
  text-decoration: none;
  display: inline-block;
  padding: 15px 15px;
}
.link:hover {
  font-style: italic;
  text-decoration: underline;
  cursor: pointer;
}
/* TABLES */
table {
  border: 1px solid black;
}
td {
  border: 1px solid black;
}
.secondary_thead {
  text-align: center;
  font-weight: bold;

}
/* CLEARFIX HACK */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
/* MAPS */
.MapContainer {
  float: right;
  margin-right: 100px;
}
.map {
  width: 700px;
  height: 700px;
}
.ref {
  font-weight: bold;
  font-size: 12px;
}
/* SPOILER TAG */
.spoiler{
  background-color: gray;
  color: transparent;
  user-select: none;
}

.spoiler:hover{
  background-color: inherit;
  color: inherit;
}