/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------- 6.0/00 - 21-03-2024
/* colors   -> #EE741D | rgba(238,116,29) | hsla(25,86%,53%) */
/* ------------------------------------------------------------------------------ */
/* day8night */
/* link	-> https://codepen.io/vikramsoni/pen/xxOjvRP */
/* date	-> 07-11-2020 */
/* ------------------------------------------------------------------------------ */
/* ROOT and VARIABLES */

/*
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400&display=swap");
*/

body {
  overflow: hidden;
  box-sizing: border-box;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Anodina-Light", sans-serif;
  background-color: #fcf8f5;
  color: #2c2d48;
  transition: background-color 1.5s, color 1s;
}

h1 {
  font-weight: 900;
}

main {
  margin-top: auto;
}

main h1 {
  font-family: "Anodina-Light", sans-serif;
  font-size: 90px;
  text-align: center;
  margin: 0 10% 50px;
  position: relative;
}

p {
  max-width: 720px;
  font-size: 22px;
  line-height: 1.6em;
  text-align: justify;
  margin: auto 5%;
  font-weight: 300;
}

small {
  font-size: 0.5em;
  display: block;
}

footer {
  cursor: pointer;
  margin-top: 50px;
  margin-bottom: auto;
  font-size: 2em;
  text-align: center;
}

.darkmode {
  color: #dcdcdc;
  background-color: #222831;
}

@media (max-width: 500px) {
  p {
    font-size: 1em;
  }

  main h1 {
    font-size: 50px;
  }

  footer {
    font-size: 1.5em;
  }

  footer small {
    font-size: 0.6em;
  }
}


/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 21-08-22 */
/* css-counter postion background */
/* https://stackoverflow.com/questions/43514987/css-increasing-number-as-background-images-for-css */
.count-reset {
	counter-reset:Element; /* reset must be here */
	}

.count-item::before { 
	position:absolute;
  	display:flex;
	/*top:var(--count-pos-top);*/
  	right:var(--count-pos-right);
  	bottom:var(--count-pos-bottom);
  /*left:var(--count-pos-left);*/
	justify-content:center;
  	align-items:center;
  	counter-increment:Element 1;
	content:counter(Element) '';
	font-size:var(--count-size); 
	font-family:var(--count-font);
	font: 800 Arial;
	  -webkit-text-fill-color:transparent; /* works FF, Chrome and Edge */
	  -webkit-text-stroke:var(--count-width);
	  -webkit-font-smoothing:antialiased;
	color:red; /*var(--count-color); /* must be the same color als card-back background */
    opacity:1;
	z-index:999;
	}
/* shadow */
/*
.shadow, .flex-item {
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.04), 0 2px 2px rgba(0, 0, 0, 0.04), 0 4px 4px rgba(0, 0, 0, 0.04), 0 8px 8px rgba(0, 0, 0, 0.04), 0 16px 16px rgba(0, 0, 0, 0.04);
}
*/	
/* ------------------------------------------------------------------------------ */
/* END */	
/* ------------------------------------------------------------------------------ */