html,
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  background: #ebebeb;
}

/* Text */

.text-block {
  max-width: 700px;
}

h1 {
  color: #000;
  font-size: 64px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

h2 {
  font-weight: 400;
}

p {
  margin: 10px 0;
  line-height: 135%;
}

.text-block p,
li {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
}

li {
  margin-bottom: 10px;
}

li a {
  word-break: break-word;
}

button {
  display: flex;
  height: 42px;
  padding: 12px 16px;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #c58b25;
  border: none;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #f2b64d;
}

/* Header */

header {
  padding: 24px 0;
}
header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .content > a img {
  width: 100px;
  height: 100%;
}

header > div nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

header > div nav p {
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
}

header .link {
  height: 24px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.71);
  font-size: 16px;
  position: relative;
  border-radius: 99em;
  cursor: pointer;
  gap: 4px;
}

.sub-menu {
  top: 120%;
  left: 0px;
  position: absolute;
  background: white;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
  transition: all 200ms ease;
  opacity: 0;
  pointer-events: none;
  gap: 10px;
  padding: 12px;
}

header .link-container {
  position: relative;
}

header .link-container:hover .sub-menu {
  top: 100%;
  opacity: 1;
  pointer-events: all;
}

header .link:hover {
  background: rgba(0, 0, 0, 0.1);
}

header .link.active {
  background: #7c1411;
  color: white;
}

section .headline {
  gap: 12px;
}

section .headline h2 {
  font-size: 50px;
  margin: 0;
}

section .headline .line {
  width: 64px;
  height: 4px;
  background: #7c1411;
}

/* Layout Classes */

.content {
  width: 90%;
  max-width: 1000px;
  padding: 20px 25px;
  margin: 0 auto;
}

.content.small {
  max-width: 700px;
}

.content > img {
  width: 100%;
}

/* Template Classes */

.template,
.hidden {
  display: none !important;
}
