html {
    font-size: clamp(62.5%, 1.5vw + 0.3rem, 75%)
    
}

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    /* font-family: Times New Roman; Averia Serif Libre, Tahoma; */
    font-family: Inconsolata, monospace;
/* 
  "#9239F6",
  "#903495",
  "#6F3460",
  "#4A354F",
  "#D20076",
  "#FF0076",
  "#FF4373",
  "#FF6B58",
  "#F8B660"
   #FA5F70FF
     */

    --bg-col: #0f0d1a;
    --title-col: #FF0076;
    --byline-col: #FF0076;
    --font-col: #FF4373;
    --hover-col: #9239F6;
    --highlight-col: #9239F6;
    --blockquote-bg-col: #FF6B58;
    --mathquote-bg-col: #F8B660;
}

blockquote {
    background-color: var(--blockquote-bg-col);
    width: 110%;
    padding: 2.5%;
    margin: 0%;
}

.math.block {
    padding: 1.25% 5% 1.25% 5%;
    color: #FF0076;
    text-shadow: #FF4373 0px 0px 1px; 
    font-size: 1.25rem;
}

body {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background-image: radial-gradient(
    #4A354F, black 120%
  );
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
}

body::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  background-repeat: repeat;
  background-attachment: fixed;
  background: 
    linear-gradient( 
    rgba(18, 16, 16, 0) 1px,
    rgba(0, 0, 0, 0.25) 1px);
  pointer-events: none;
background-size: auto 2px;
}

.stream {
    display: flex;
    flex-direction: column;
}

h1 {
    color: var(--title-col)
}

h2, h3, h4, h5, h6, p {
    color: var(--font-col);
    padding: auto 1% auto 0%;
    text-shadow: #FF4373 0px 0px 1px; 
}

p {
    margin: 1%;
    padding: 1% auto 0% auto; 
    font-size: 1.5rem;
}

a {
    padding: 0px;
    margin: 0px;
    color: #FF0076;
}

ol {
    color: #FF6B58;
    text-shadow: #FF6B58 0px 0px 1px;
    font-weight: bold;
}

.horiz > h3 >  a {
    text-decoration: none;
}

.horiz {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

::selection, ::-moz-selection {
    background: var(--highlight-col);
}

/* Header CSS */

header {
    /* background-color: var(--bg-col); */

    display: flex;
    align-items: center;
    justify-content: space-between;
    
    max-width: 800px;
    min-width: 320px;
    margin: 0px;
    margin-left: auto;
    margin-right: auto;
}

#title {
    font-size: 3.8rem;
    color: #D20076;
}

#subtitle {
    font-size: 1.4rem;
    text-align: left;
    color: var(--title-col)
}

/* Font */

h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 1.5rem;
    text-align: left;
}

h3 {
    font-size: 1.2rem;
}

main {
    padding-left: 5%;
    padding-right: 5%;
}

footer {
    max-width: 800px;
    width: 100vw;
    height: 60px;
    margin: 0px;
    padding: 1%;
}

.figure {
  display: block;
  margin: auto;
  max-width: 800px;
}

@media only screen and (max-width: 780px) {
    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .stream {
        padding: 0% 2%;
    }
}