body {
  /*Font*/
  
  font-family: Rubik, sans-serif;
  font-size: 20pt;
  
  text-align: center;
  
  background-color: white;
}
h1, h2, h3, h4, h5, h6, p, a, span{
  color: black;
  
}

p {
  color: black;
}



.highlight {
  color: rgb(0, 128, 0);
  font-style: italic;
}


span{
  color: green;
}

ul {
  list-style-type: none;
  font-size: larger;
  line-height: 2;
}

li::before {
  content: "- ";
  font-style: italic;
  
}

.in_text_img {
  max-width: 100%;
  height: 2.0em;
  vertical-align: top;
}

a:hover {
  color: green;
}

a:hover {
  text-decoration: none;
}

.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 1s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}