html, body {
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
}

body {
  position: absolute;
  background-color: #303030;
}

* {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
}

@media only screen and (max-width: 1000px) {
    * {
        font-size: 18px;
    }
}

@media only screen and (max-width: 800px) {
    * {
        font-size: 14px;
    }
}

@media only screen and (max-width: 500px) {
    * {
        font-size: 11px;
    }
}

@media only screen and (max-width: 300px) {
    * {
        font-size: 8px;
    }
}

@media only screen and (min-width: 1600px) {
    * {
        font-size: 16px;
    }
}

@media only screen and (min-width: 2500px) {
    * {
        font-size: 24px;
    }
}

@media only screen and (min-width: 3400px) {
    * {
        font-size: 32px;
    }
}

h1 {
  font-size: 1.3em;
  font-weight: 500;
  color: #404040;
}

h2 {
  font-size: 1.1em;
  font-weight: 500;
  color: #405050;
}

ul {
	margin: 0;
}

#content {
  display: inline-block;
  position: relative;
  width: 100%;
  background-color: #f5f5f5;
}

div.contentheader {
  display: block;
  width: 70em;
  margin: 5em auto;
}

div.contentcategory {
  position: relative;
  display: flex;
  width: 70em;
  margin: 5em auto;
}

div.contentcategory span.title {
  box-sizing: border-box;
  flex: 1 0 22%;
  color: #909090;
  margin-right: 1em;
  padding-right: 1em;
  font-size: 1.3em;
  text-align: right;
  border-right: 0.15em solid #b0b0b0;
}

div.contentcategory span.content {
  flex: 1 0 78%;
}

@media only screen and (max-width: 1000px) {
  div.contentheader {
    width: 80%;
  }

  div.contentcategory {
    display: block;
    width: 80%;
  }

  div.contentcategory span.title {
    display: inline-block;
    width: auto;
    padding: 0;
    text-align: left;
    border: 0;
    border-bottom: 0.15em solid #b0b0b0;
    margin-bottom: 1em;
  }
}

div.contentcategory span.content h1 {
  margin-top: 0;
}

div.contentcategory span.content p {
  margin-bottom: 3em;
}

div.contentcategory span.content p:last-child {
  margin-bottom: 0;
}

table.table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 2em;
  margin-bottom: 2em;
  color: #303030;
}

table.table tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

table.table td {
  padding: 1em;
}

table.table td:first-child {
  color: #b07000;
  padding-left: 2em;
}

table.table td:last-child {
  padding-right: 2em;
}

a {
  color: #b07000;
}

button, a.button {
  cursor: pointer;
  color: #b07000;
  text-decoration: none;
  padding: 1em 2em;
  background-color: transparent;
  border: 0.2em solid #b07000;
  text-align: center;
  transition: 0.1s;
}

button:hover, a.button:hover {
  background-color: #b07000;
  color: #f0f0f0;
}
