p {
  margin-bottom: 19px;
  margin-top: 19px;
  line-height: 145%;
}

body {
  font-size: 14pt;
  font-family: "Cormorant Garamond", Palatino, Georgia, "Times New Roman", serif;
  text-align: justify;
  counter-reset: h1;
}

strong, b, th, h1 {
  font-family: "Cormorant Garamond", Palatino, Georgia, "Times New Roman", serif;
}

.wrapper {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-left: 10px;
}

main {
  padding-bottom: 200px;
}

@media(max-width: 600px) {
  main {
    padding-bottom: 0px;
  }
}

.site-title {
  font-family: "Tangerine", serif;
  text-transform: capitalize;
}

.site-header {
  padding-top: 20px;
  position: relative;
  text-align: center;
}

.site-header a,
.site-header a:visited {
  color: #d8d8d8;
}

.site-header--menu {
  color: #d8d8d8
}

.site-header--title {
  font-size: 220%;
  padding-top: 220px;
}

.site-header--subtitle {
  font-size: 150%;
  padding-bottom: 25px;
}

@media(max-width: 600px) {
  .site-header--title {
    padding-top: 25px;
  }

  .site-header--menu,
  .site-header a,
  .site-header a:visited {
    color: #aaa;
  }
}

h1::before {
  counter-increment: h1;
  content: counter(h1) " ";
  margin-right: 15px;
}

h1 {
  font-size: 160%;
  counter-reset: h2;
  text-transform: capitalize;
  padding-top: 24px;
  padding-bottom: 5px;
}

h2::before {
  counter-increment: h2;
  content: counter(h1) "."counter(h2) " ";
  margin-right: 10px;
}

h2 {
  text-transform: capitalize;
}

img {
  max-width: 100%;
  display: block;
  margin: auto;
}

/** Figures */
figure>img {
  display: block;
}

figcaption {
  font-size: 75%;
}

/** Lists */
ul,
ol {
  margin-left: 20px;
}

ul>li {
  list-style-type: "\2013   ";
}

li {
  line-height: 145%;
  margin-bottom: 15px;
}

li:first-child {
  margin-top: 15px;
}

@media(max-width: 600px) {
  ul, ol {
    margin-left: 0px;
  
  }  
}

td {
  padding: 5pt;
}

/** Links */
a,
a:visited {
  color: #000;
}

a:hover,
a:visited:hover {
  color: #000;
}

/** Blockquotes */
blockquote {
  color: #424242;
  border-left: 4px solid #888;
  padding-left: 15px;
  font-style: italic;
  background: #f5f5f5;
}

@media(max-width: 600px) {
  blockquote {
    padding-left: 0px;
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
  }
} 

blockquote> :last-child {
  margin-bottom: 0;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
}

pre>code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}


sup {
  line-height: 0;
}

.index--big-button {
  text-decoration: none;
  display: inline-block;
  width: 49%;
  border-radius: 5px;
}

.index--big-button:last-child {
  border-left: 1pt solid #d8d8d8;
}

.index--big-button--wrapper {
  padding: 10px;
}

.index--big-button b {
  size: 1.2em;
  margin-bottom: 10px;
  display: block;
}

.index--big-button:hover {
  background-color: #d8d8d8;
  cursor: pointer;
}

.post-list li {
  /* font-size: 2em; */
  list-style: none;
  margin-bottom: 20px;
}

.post-list li a {
  text-decoration: none;
  margin-bottom: 20px;
}

.post-list li center {
  color: #d8d8d8;
}

.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #d8d8d8;
  height: 1px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}
