
@font-face {
  font-family: "lora-regular";
  src: url("Lora-Regular-subset.woff2");
  font-variant-emoji: emoji;
  font-display: fallback;
  /*font-display: optional*/
} 

@font-face {
  font-family: "dancing-script";
  src: url("DancingScript-SemiBold-subset.woff2");
  font-variant-emoji: emoji;
  font-display: fallback;
  /*font-display: optional*/
}

html {
   background-color: NavajoWhite;
   background-image: url(bg_floral.png);
   background-size: 100% auto;
   font-family: lora-regular, Georgia, serif;
   font-weight: normal;
   font-size: 20px;
   color: Black;
}

body {
  background-color: #FFF5D2;
  padding-top: 8px;
}

a {
  color: Black;
  text-decoration: underline;
}

a:visited {
  color: RosyBrown;
}

a:hover {
  text-decoration: underline;
}

a:active {
  color: Goldenrod;
}

a:focus {
  outline: solid;
}

#legal {
  font-size: 18px;
}

blockquote {
    color: DarkSlateGray;
    border-left: 2px solid CadetBlue;
}

blockquote:NOT(#autohotkey) {
    color: DarkSlateGray;
    border-left: 2px solid CadetBlue;
}

table {
  color: Black;
  border: none;
}

#syntaxtable table {
  letter-spacing: 0px;
  font-size: 18px;
}

.emoji {
  font-size: 20px;
  text-shadow: 0px 1px CadetBlue, 0px -1px #FFEDB2;
  letter-spacing: 1px;
}

::selection {
  color: White;
  background: Peru;
}

title {
  text-decoration: none;
  background-color: #FFCE9E;
  border-radius: 5px;
  color: Black;
  font-size: 24px;
  padding: 3px 7px;
  margin-right: 4px;
  outline: solid;
  outline-width: 2px;
}

#title {
  font-size: 36px;
  font-family: dancing-script, lora-regular, Georgia, serif;
  margin-top: 3%;
  text-align: center;
  letter-spacing: 0px;
}

.cursive {
  font-size: 30px;
  font-family: dancing-script, lora-regular, Georgia, serif;
}

.bigemoji {
  font-size: 23px;
}

h1 {
  font-size: 30px;
  font-weight: normal;
  margin-top: 0%;
  color: Black;
}

h2 {
  text-decoration: none;
  background-color: #FFCE9E;
  border-radius: 5px;
  color: Black;
  font-size: 24px;
  padding: 3px 7px;
  margin-right: 4px;
  outline: solid;
  outline-width: 2px;
  margin-bottom: 20px;
}

h3 {
  text-decoration: none;
  background-color: #FFEDB2;
  border-radius: 5px;
  color: Black;
  font-size: 24px;
  padding: 3px 7px;
  margin-right: 4px;
  outline: solid;
  outline-width: 2px;
  margin-bottom: 20px;
}

nav:not(#TOC) {
  text-align: center;
  margin: 0px 0;
  padding: 0px;
  
  @media print {
    visibility: hidden;
  }
}

nav:not(#TOC) a {
  text-decoration: none;
  background-color: #FFCE9E;
  border-radius: 5px;
  color: Maroon;
  font-size: 24px;
  padding: 3px 4px;
  margin-right: 2px;
  line-height: 1.75;
  outline: solid;
  outline-width: 2px;
}

nav:not(#TOC) a:visited {
  color: Maroon;
}

nav:not(#TOC) a:hover {
  text-decoration: none;
  color: Peru;
}

nav:not(#TOC) a.active {
  background-color: #FFEDB2;
}

@media print {
  nav {
    display: none;
  }
}

/** {box-sizing:border-box}*/

/* Hide alt text */
img {
  color: transparent;
}

/* Slideshow container */
.slideshow-container {
  max-width: 21em;
  position: relative;
  margin: auto;
  margin-bottom: 0em;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  /*background-color: rgba(255,206,158,0.4);*/
  background-color: transparent;
  border-color: transparent;
  cursor: pointer;
  position: absolute;
  top: 70%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: Peru;
  font-weight: bold;
  font-size: 26px;
  transition: 0.2s ease;
  border-radius: 3px 3px 3px 3px;
  user-select: none;
}

.prev {
  left: 0%;
}

/* Position the "next button" to the right */
.next {
  right: 0%;
  border-radius: 3px 3px 3px 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  /*background-color: #FFCE9E;*/
  /*background-color: rgba(255,206,158,0.6);*/
  /*rgba(0,0,0,0.8);*/
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: black;
  font-size: 12px;
  padding: 4px 0px;
  position: absolute;
  left: 1%;
  bottom: -3%;
}

/* The dots/bullets/indicators */
.dot {
  /*padding-top: -20em;*/
  cursor: pointer;
  height: 1.2em;
  width: 1.2em;
  margin: 0 0.1em;
  margin-bottom: 2em;
  background-color: #FFCE9E;
  /*background-color: #bbb;*/
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.active, .dot:hover {
  background-color: Peru;
  /*background-color: #717171;*/
}

/* Fading animation */

.fade {
  animation-name: fade;
  animation-duration: 0.4s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.solution {
  display: none;
}

.solutionbutton {
  font-family: lora-regular, Georgia, serif;
  font-size: 20px;
  text-decoration: none;
  background-color: #FFEDB2;
  border-radius: 5px;
  color: Black;
  padding: 3px 7px;
  margin-right: 4px;
  outline: solid;
  outline-width: 0px;
  margin-bottom: 20px;
  cursor:pointer;
}

.big {
  font-size: 22px;
}
