/*!
 * Writ v1.0.4
 *
 * Copyright © 2015, Curtis McEnroe <curtis@cmcenroe.me>
 *
 * https://cmcenroe.me/writ/LICENSE (ISC)
 */

/* Fonts, sizes & vertical rhythm */



html {
  font-family: /*Palatino, Georgia, Lucida Bright, Book Antiqua,*/ "Atkinson Hyperlegible", monospace;
  font-size: 16px;
  line-height: 1.5rem;
  font-weight: 200;
}

code, pre, samp, kbd {
  font-family: Consolas, Liberation Mono, Menlo, Courier, monospace;
  font-size: 0.833rem;
}

kbd { font-weight: bold; }
h1, h2, h3, h4, h5, h6, th { font-weight: normal; }

/* Minor third */
h1 { font-size: 2.488em;  font-variant: small-caps;}
h2 { font-size: 1.85em; font-variant: small-caps; }
h3 { font-size: 1.728em; }
h4 { font-size: 1.44em; }
h5 { font-size: 1.2em; }
h6 { font-size: 1em; }
small { font-size: 0.833em; }

h1, h2, h3 { line-height: 3rem; }

p, ul, ol, dl, table, blockquote, pre, h1, h2, h3, h4, h5, h6 {
  margin: 1.5rem 0 0;
}
ul ul, ol ol, ul ol, ol ul { margin: 0; }

hr {
  border: 1px #8888cc dotted;
  max-width: 50%;
}

/* Accounting for borders */
table {
  line-height: calc(1.5rem - 1px);
  margin-bottom: -1px;
}
pre {
  margin-top: calc(1.5rem - 1px);
  margin-bottom: -1px;
}

/* Colors */

body { background: #ddfdef; color: #19193e; }
code, pre, samp, kbd { color: #5457b3; }
a, header nav a:visited, a code { color: #c57b91; }
a:visited, a:visited code { color: #d197be; }
mark { color: inherit; }

code, pre, samp, thead, tfoot { background-color: rgba(0, 0, 0, 0.05); }
mark { background-color: #d298bf; }

main aside, blockquote, ins { border: solid rgba(0, 0, 0, 0.05); }
pre, code, samp { border: solid rgba(0, 0, 0, 0.1); }
th, td { border: solid #dbdbdb; }


/*dark mode*/


@media (prefers-color-scheme: dark) {
  body { background: #2A2A47; color: #DBFDEF; }
  code, pre, samp, kbd { color: #98d7bf; }
  a, header nav a:visited, a code { color: #90d8b6; }
  a:visited, a:visited code { color: #915ec6; }
  mark { color: inherit; }

  code, pre, samp, thead, tfoot { background-color: rgba(0, 0, 0, 0.05); }
  mark { background-color: #302f79; }

  main aside, blockquote, ins { border: solid rgba(0, 0, 0, 0.05); }
  pre, code, samp { border: solid rgba(0, 0, 0, 0.1); }
  th, td { border: solid #dbdbdb; }

   h1{
    padding: 6px;
    text-shadow: 5px 5px 2px #302f79;
}

  h2{
    padding: 6px;
    text-shadow: 5px 5px 2px #302f79;
    text-decoration: underline;
}

h3{
  font-style: italic;
}


}
  

/* Layout */

body { margin: 1.5rem 1ch; }

body > header { text-align: center; }

main, body > footer {
  display: block; /* Just in case */
  max-width: 78ch;
  margin: auto;
}

main figure, main aside {
  float: right;
  margin: 1.5rem 0 0 1ch;
}

main aside {
  max-width: 26ch;
  border-width: 0 0 0 0.5ch;
  padding: 0 0 0 0.5ch;
}

/* Copy blocks */

blockquote {
  margin-right: 3ch;
  margin-left: 1.5ch;
  border-width: 0 0 0 0.5ch;
  padding: 0 0 0 1ch;
}

pre {
  border-width: 1px;
  border-radius: 2px;
  padding: 0 0.5ch;
  overflow-x: auto;
}
pre code {
  border: none;
  padding: 0;
  background-color: transparent;
  white-space: inherit;
}

img { max-width: 100%;
    height:auto;
}

a:hover img{
  box-shadow: 2px 5px 1px;
  transition: box-shadow 0.3s ease, transform 0.3s ease-out;
}

/* Lists */

ul, ol, dd { padding: 0 0 0 3ch; }
dd { margin: 0; }

ul > li { list-style-type: disc; }
li ul > li { list-style-type: circle; }
li li ul > li { list-style-type: square; }

ol > li { list-style-type: decimal; }
li ol > li { list-style-type: lower-roman; }
li li ol > li { list-style-type: lower-alpha; }

nav ul {
  padding: 0;
  list-style-type: none;
}
nav ul li {
  display: inline;
  padding-left: 1ch;
  white-space: nowrap;
}
nav ul li:first-child { padding-left: 0; }

/* Tables */

table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}

th, td {
  border-width: 1px;
  padding: 0 0.5ch;
}

/* Copy inline */

a { text-decoration-line: underline;
  text-decoration-style: dotted; }

sup, sub {
  font-size: 0.75em;
  line-height: 1em;
}

ins {
  border-width: 1px;
  padding: 1px;
  text-decoration: none;
}

mark {
  padding: 1px;
}

code, samp {
  border-width: 1px;
  border-radius: 2px;
  padding: 0.1em 0.2em;
  white-space: nowrap;
}

/* blog specific */

#nextprev{
    margin: 0 auto;
    text-align: center;
}

.postMetadata{
    margin: 0 auto;
    text-align: center;
}

footer{
    margin: 50px;
    text-align: center;
}

#recentPostList ul,li{
  list-style-type: none;
}

/*form*/
button{
  font: "Atkinson Hyperlegible", monospace;
  font-weight: 400;
  background-color:#90d8b6;
  border-color:#302f79;
  border-radius: 5px;
}