@charset "UTF-8";

@font-face {
  font-family: 'Pixel Coleco';
  src: url(fonts/Pixel Coleco.otf);
}

:root {
  --cont-color: transparent;
  --title-color: transparent;
  --back-color: rgb(12, 12, 12);
  --font-color: rgb(256, 1, 1);
  --border-color: rgb(45, 66, 47);
  --shadow-1: rgb(100, 126, 113);
  --shadow-2: rgb(100, 126, 113);
  --link-hover: rgb(100, 126, 113);
}

details
{
 font-size: 23;
 
}

details summary::marker 
{
  content: "[ + ]";
  color: #509d07;
  
}

details[open] summary::marker
{
  content: "[ - ] ";
  color: #509d07;
  
}





a {
    color: rgb(45, 66, 47);
}
b {
    color: #ffee50;
}

hr {
  border-color: rgb(45, 66, 47);
}

html {
    font-size: 23px;
    background-repeat: repeat;
    background-size: 15px;
    background-attachment: fixed;
    background-color: var(--back-color);
}

body {
    font-size: 23;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10%;
    padding-left: 3%;
    padding-right: 3%;
    font-family: 'Pixel Coleco'; 
    font-weight: lighter;
    color: var(--font-color);
    max-width: 1600px;
    border-radius: 30px;
    counter-reset: sidenote-counter;
}

.dark {
   background-color: #121212;
   font-family: 'MS PGothic', monospace;
   color: #FFFFFF;
   filter: brightness(.6) contrast(1.3);
}

h1 {
    font-weight: 400;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    font-size: 4.5rem;
    line-height: 1;
}

h2 {
    font-weight: 400;
    margin-top: 2.1rem;
    margin-bottom: 1.4rem;
    font-size: 2.2rem;
    line-height: 1;
}

h3 {
    font-style: italic;
    font-weight: 400;
    font-size: 1.7rem;
    margin-top: 2rem;
    margin-bottom: 1.4rem;
    line-height: 1;
}

h4 {
	font-weight: 400;
    font-size: 1.7rem;
    margin-top: 1rem;
    margin-bottom: 1.4rem;
    line-height: 1;
}

hr {
    display: block;
    height: 1px;
    width: 55%;
    border: 0.35vw;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}


p {
    font-size: 23;
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
    padding-right: 0;
    vertical-align: baseline;
    font-family: 'Pixel Coleco'; 
    color: #509d07;
}
.red {
    color:#ef2929;
    background: none;
}

.blue {
    color:#719ece;
    background: none;
}

.green {
    color:#509d07;
    background: none;
}

.greenHighlight {
    color:#88e034;
    background: none;
}

.yellow {
    color:#ffee50;
    background: none;
}


/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}
