:root {
  --background: #ffffff;
  --color: #2F4858;
  --accent: #ff3456;
  --dash: #5F788A;

  --accent-2: #007EA3;
  --accent-3: #EA2D9D;
  --accent-4: #53B9C9;
  --accent-5: #448089;
  --accent-6: #00A54D;
  --accent-7: #6374FF;
  --accent-8: #FF6498;
  --accent-9: #BEFBFF;
  --accent-10: #F3EED9;
  --accent-11: #FCE9ED;
  --accent-12: #B60024;

  --titles: "Anton", sans-serif;
  --body: "Montserrat", sans-serif;
  --mono: monospace;

  --stripes: repeating-linear-gradient(
    45deg,
    var(--background),
    var(--background) 10px,
    var(--accent-3) 10px,
    var(--accent-3) 20px
  );
}

* {
  box-sizing: border-box;
}

html, body {
  border: 0;
  margin: 0;
  padding: 0;
}

body {
  background: var(--background);
  background-size: contain;
  color: var(--color);
  font-family: var(--body);
  letter-spacing: 0.1rem;
  line-height: 1.5;
  min-height: 100vh;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  color: var(--accent-2);
  text-decoration: none;
}

a:hover,
a:active {
  text-decoration: underline;
}

h1, h2, h3, h4, h4, h5 {
  font-family: var(--titles);
  font-weight: 400;
  letter-spacing: .2rem;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 60px;
}

h3 {
  margin-bottom: 30px;
}

p {
  margin: 0 0 60px 0;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin-bottom: 60px;
}

ul:last-child {
  margin-bottom: 0;
}

.tag {
  background: var(--accent-9);
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: normal;
  padding: 0 2px;
  text-transform: uppercase;
}

.tag::before {
  content: '#';
}

.tag:hover {
  background: var(--accent);
  color: var(--background);
  text-decoration: none;
}

.single .text ul,
.single .text li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.single .text ul {
  margin-bottom: 60px;
}

.single .text li {
  margin-bottom: 15px;
}