:root {
  --text: #000000;
  --text-revert: #E1E1E1;
  --gray: #707070;
  --red: #a72145;
  --green: #058043;
  --purple: #2e2459;
  --yellow: #f8cb33;
  --gradient-from: #E0E0E0;
  --gradient-via: #E0E0E0;
  --gradient-to: #a7f3d0;
  --bg-overlay: rgba(255, 255, 255, 0.5); }

[data-theme="dark"] {
  --text: #E0E0E0;
  --text-revert: #707070;
  --gray: #707070;
  --red: #a72145;
  --green: #058043;
  --purple: #2e2459;
  --yellow: #f8cb33;
  --gradient-from: #1a202c;
  --gradient-via: #1a202c;
  --gradient-to: #2d3748;
  --bg-overlay: rgba(255, 255, 255, 0.219)
; }

html {
  font-size: 72.5%; }

@media screen and (min-width: 30em) {
  html {
    font-size: 75%; } }

body {
  font-family: "DB Grifter", serif !important;
  background-image: linear-gradient(to right, var(--gradient-from), var(--gradient-via) 50%, var(--gradient-to));
  background-attachment: fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  font-size: 1.5em;
  font-weight: 400;
  transition: background-color 0.3s ease, color 0.3s ease;
  scroll-behavior: smooth; }
  body > #main-content {
    flex: 1; }

::-webkit-scrollbar {
  width: 8px; }

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1); }

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px; }

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5); }

body,
h6 {
  line-height: 1.6; }

.container {
  width: 100%;
  box-sizing: border-box; }

.container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px; }

.column,
.columns {
  float: left; }

@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; } }

ol,
p,
ul {
  margin-top: 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'DB Header';
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }

h1 {
  font-size: 4rem;
  line-height: 1.2; }

h2 {
  font-size: 3.6rem;
  line-height: 1.25; }

h3 {
  font-size: 3rem;
  line-height: 1.3; }

h4 {
  font-size: 2.4rem;
  line-height: 1.35;
  letter-spacing: -.08rem; }

h5 {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -.05rem; }

h6 {
  font-size: 1.5rem;
  letter-spacing: 0; }

p {
  font-size: 1.5rem;
  letter-spacing: 0; }

@media (min-width: 550px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }
  h1 {
    font-size: 5rem; }
  h2 {
    font-size: 4.2rem; }
  h3 {
    font-size: 3.6rem; }
  h4 {
    font-size: 2.4rem; }
  h5 {
    font-size: 2.2rem; }
  h6 {
    font-size: 1.5rem; } }

.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  font-family: revert-layer;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid initial;
  cursor: pointer;
  box-sizing: border-box; }

.button:focus,
.button:hover,
button:focus,
button:hover,
input[type=submit]:focus,
input[type=submit]:hover,
input[type=reset]:focus,
input[type=reset]:hover,
input[type=button]:focus,
input[type=button]:hover {
  color: var(--text);
  outline: 0;
  background-color: #d1d1d12a; }

.button.button-primary,
button.button-primary,
input.button-primary[type=submit],
input.button-primary[type=reset],
input.button-primary[type=button] {
  color: #E0E0E0;
  background-color: var(--green);
  border: none; }

.button.button-primary:focus,
.button.button-primary:hover,
button.button-primary:focus,
button.button-primary:hover,
input.button-primary[type=submit]:focus,
input.button-primary[type=submit]:hover,
input.button-primary[type=reset]:focus,
input.button-primary[type=reset]:hover,
input.button-primary[type=button]:focus,
input.button-primary[type=button]:hover {
  color: #E0E0E0;
  background-color: var(--gray);
  border: none; }

input[type=tel],
input[type=url],
input[type=password],
input[type=email],
input[type=number],
input[type=search],
input[type=text],
select,
textarea {
  height: 38px;
  padding: 6px 10px;
  background-color: #E0E0E0;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }

input[type=tel],
input[type=url],
input[type=password],
input[type=email],
input[type=number],
input[type=search],
input[type=text],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }

input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=text]:focus,
select:focus,
textarea:focus {
  border: 1px solid var(--green);
  outline: 0; }

label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }

fieldset {
  padding: 0;
  border-width: 0; }

input[type=checkbox],
input[type=radio] {
  display: inline; }

label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: 400; }

ul {
  list-style: circle inside; }

ol {
  list-style: decimal inside; }

ol,
ul {
  padding-left: 0; }

ol ol,
ol ul,
ul ol,
ul ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }

.button,
button,
li {
  margin-bottom: 1rem; }

td,
th {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }

td:first-child,
th:first-child {
  padding-left: 0; }

td:last-child,
th:last-child {
  padding-right: 0; }

fieldset,
input,
select,
textarea {
  margin-bottom: 1.5rem; }

blockquote,
dl,
figure,
form,
ol,
p,
pre,
table,
ul {
  margin-bottom: 2.5rem; }

.container:after,
.row:after {
  content: "";
  display: table;
  clear: both; }

p {
  font-family: "DB Grifter", serif !important; }

blockquote {
  font-style: italic;
  position: relative;
  background-color: white;
  border-left: 8px solid white;
  border-radius: 5px;
  margin: 0;
  margin-bottom: 2rem;
  padding: 2rem; }
  blockquote:before {
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em; }
  blockquote p:last-of-type {
    margin-bottom: 0; }

details > summary {
  cursor: pointer;
  font-style: italic; }

details > blockquote {
  font-style: normal; }

code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  border-radius: 4px;
  background-color: initial;
  border: 1px solid rgba(112, 112, 112, 0.25);
  overflow: auto; }

pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }

section {
  padding: 30px 0 60px 0; }
  section header {
    padding: 30px 0 60px 0;
    display: inline-block; }
    section header h1 {
      font-size: 2.6em;
      font-family: "DB Header", serif;
      margin: 0;
      padding: 0;
      letter-spacing: 1px; }

header h1,
section h1 {
  z-index: 999;
  position: relative; }

header h1 {
  font-family: "DB Header", serif;
  font-size: 8rem;
  margin-bottom: 0;
  margin-top: 0; }

section {
  padding: 30px 0 60px 0; }

section .container {
  padding-top: 20px; }

ul.nav,
ul.nav li {
  margin-bottom: 0; }

.nav a {
  color: #707070; }

div.logo {
  color: var(--text);
  font-family: "Buongiorno", serif;
  font-size: 5rem;
  text-decoration: none;
  margin-top: 3px; }
  div.logo a {
    color: var(--text);
    text-decoration: none; }
  div.logo img {
    width: 80px;
    margin-top: -3px; }
  div.logo span {
    display: inline-block; }

.section-md {
  color: var(--text); }
  .section-md .highlight {
    background-color: var(--green); }
  .section-md a {
    color: #707070; }
  .section-md .button.button-secondary {
    background-color: var(--green);
    border: 1px solid var(--green);
    color: #707070;
    text-decoration: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis; }
    .section-md .button.button-secondary:hover, .section-md .button.button-secondary:focus {
      border-color: #707070; }
  .section-md a.anchor::before {
    content: "#";
    display: none;
    position: absolute;
    width: 1em;
    margin-left: -1em;
    text-decoration: none;
    opacity: 0.7;
    color: #707070;
    font-weight: normal; }
  .section-md :hover > a.anchor::before {
    display: block; }
  .section-md a.anchor:hover::before {
    opacity: 1; }

ul,
ol {
  list-style-position: outside;
  padding-left: 1.2em; }

ul {
  list-style-type: disc; }

.posts .highlight {
  background-color: #a72145; }

.posts a {
  text-decoration: underline; }

.posts .button.button-secondary {
  background-color: #a72145;
  border: 1px solid #a72145;
  text-decoration: none;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis; }
  .posts .button.button-secondary:hover, .posts .button.button-secondary:focus {
    border-color: #E0E0E0; }

.posts code {
  background-color: rgba(224, 224, 224, 0.15);
  border: 1px solid rgba(224, 224, 224, 0.65); }

table.post-list a {
  text-decoration: none; }

table.post-list a:hover {
  text-decoration: underline; }

.publish-date-author {
  color: #707070;
  margin: -60px 0 60px 0; }

footer {
  padding: 30px 0; }
  footer ul {
    list-style-type: none;
    padding-left: 0; }
  footer a {
    color: #707070;
    text-decoration: none; }
    footer a:hover {
      color: var(--green);
      text-decoration: underline; }

footer h4 {
  font-size: 1.2em;
  font-weight: 800; }

footer img {
  width: 40px;
  padding: 0 10px; }

footer .contact {
  text-align: center;
  padding-top: 30px; }

h3,
.post h2,
header h1 {
  color: var(--text);
  display: inline-block;
  font-weight: 800;
  font-size: 1.8em;
  letter-spacing: normal; }

.post h2 {
  font-size: 2em; }

.post h3 {
  display: block; }

.post img {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.post .right-thumbnail {
  float: right;
  width: 150px;
  margin-left: 15px;
  margin-bottom: 15px;
  clear: right;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3); }

.post table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  overflow-x: auto;
  display: block; }

header h1 {
  letter-spacing: 1px; }

.highlight {
  height: 12px;
  position: relative;
  top: 0;
  left: -10px;
  width: 120%;
  max-width: 90vw;
  border-radius: 2px; }

@media screen and (max-width: 769px) {
  .highlight {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0; } }

a {
  color: var(--green);
  text-decoration: none; }
  a:hover {
    color: var(--green);
    text-decoration: underline; }

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center; }

.toggle-button {
  padding: 10px 20px;
  font-size: 16px;
  color: var(--text);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
  transition: background-color 0.3s ease; }
  .toggle-button:hover {
    color: var(--green);
    text-decoration: underline; }

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #E0E0E0;
  padding: 15px;
  display: none;
  /* Hidden by default */
  z-index: 1000; }

.cookie-consent-content {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.cookie-consent p {
  margin: 0;
  font-size: 14px; }

.cookie-consent a {
  color: #E0E0E0;
  text-decoration: underline; }
  .cookie-consent a:hover {
    color: var(--gradient-to); }

pre {
  position: relative;
  border-radius: 10px;
  overflow-x: auto; }

.copy-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-direction: row;
  position: absolute;
  top: 0px;
  right: 0px;
  font-family: "DB Header", serif !important;
  font-size: 0.75em;
  cursor: pointer;
  outline: none;
  z-index: 0;
  border-radius: 4px;
  background-color: transparent;
  color: var(--gray);
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 0.8rem; }
  .copy-btn:hover, .copy-btn:focus {
    color: #E0E0E0; }

.to-top-btn button {
  color: var(--text);
  padding: revert-layer;
  border: unset;
  z-index: 9999; }
  .to-top-btn button:hover {
    text-decoration: underline; }

#to-top-btn {
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(100px); }

#modeIcon:hover g {
  fill: var(--green);
  transition: opacity 0.3s ease; }

hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid var(--text-revert); }

.hr {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  border-width: 0;
  border-top-width: 0px;
  border-top: 1px solid var(--text-revert); }

.shared {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

strong {
  color: #707070; }
