@import url('https://fonts.googleapis.com/css?family=Mozilla+Text');
@import url('https://fonts.googleapis.com/css?family=Mozilla+Headline')
@import url('https://fonts.googleapis.com/css?family=Quicksand')

/* font start */

.mozilla-text-<moztext> {
  font-family: "Mozilla Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}


.mozilla-headline-<mozhead> {
  font-family: "Mozilla Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.quicksand-<quicksand> {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.inconsolata-<inconsolata> {
  font-family: "Inconsolata", monospace;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.jost-<jost> {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}


.urbanist-<urbanist> {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}


.bitcount-prop-double-<bitcountdb> {
  font-family: "Bitcount Prop Double", system-ui;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "CRSV" 0.5,
    "ELSH" 0,
    "ELXP" 0;
}


.bitcount-prop-single-<bitcountsg> {
  font-family: "Bitcount Prop Single", system-ui;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "CRSV" 0.5,
    "ELSH" 0,
    "ELXP" 0;
}

.turret-road-extralight {
  font-family: "Turret Road", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.turret-road-light {
  font-family: "Turret Road", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.turret-road-regular {
  font-family: "Turret Road", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.turret-road-medium {
  font-family: "Turret Road", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.turret-road-bold {
  font-family: "Turret Road", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.turret-road-extrabold {
  font-family: "Turret Road", sans-serif;
  font-weight: 800;
  font-style: normal;
}

/* font end */

.header {
  text-align: center;
  padding: 2%;
}

body {
  background-color: #ded4b9;
  color: #381231;
  font-family: Inconsolata;
}

h1 {
  color: #381231;
  font-family: Turret Road;
}

h2 {
  color: #381231;
  font-family:  Bitcount Prop Single;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

 .column {
  float: left;
}

/* Left and right column */
.column.side {
  width: 20%;
  padding: 5%;
}

/* Middle column */
.column.middle {
  width: 40%;
  padding: 0%;
}
  
 .footer {
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;            /* Footer height */
}

.page.container {
  position: relative;
  min-height: 100vh;
}

.content.wrap {
  padding-bottom: 2.5rem;    /* Footer height ? what that means (https://www.freecodecamp.org/news/how-to-keep-your-footer-where-it-belongs-59c6aa05c59c/)*/
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .column.middle, .column.side {   
    width: 100%;
    padding: 5%;
    }

/* unvisited link */
a:link {
  color: #322c1c;;
}

/* visited link */
a:visited {
  color: #322c1c;;
}

/* mouse over link */
a:hover {
  color: #322c1c;;
}

/* selected link */
a:active {
  color: #322c1c;;
}
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

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

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #381231;
  font-weight: bold;
  font-size: 30px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

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

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

/* Number text (1/3 etc) */
.numbertext {
  color: #381231;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

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

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

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