html, body {
   font-size: 0.88em;
   text-align: justify;
   line-height: 1.4em;
   word-wrap: break-word !important;
   font-family: Verdana, sans-serif;
   letter-spacing: .03em;
	padding: 0.8em;
	height: 80vh;
	background: linear-gradient(-45deg, rgba(255,231,173,1) 17%, rgba(255,255,247,1) 52%, rgba(132,223,255,1) 86%);
	background-size: 1000% 1000%;
	animation: animate 30s ease infinite;
}

@keyframes animate {
	0% {background-position: 0% 50% } 
	50% {background-position: 100% 50% } 
	100% {background-position: 0% 50% }
} 

.tooltip {
	position: relative;
	display: inline-block;
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 400px;
	background-color: black;
	color: #fff;
	text-align: left;
	border-radius: 6px;
	padding: 5px 10px;
   position: fixed;
   top: 10px;
   right: 10px;
	z-index: 1;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
}

a:link.lnk {
	text-decoration: underline;
	font-style: normal;
	color: #222;
}

a:visited.lnk {
	text-decoration: none;
	font-style: italic;
	color: #222;
}

a:hover.lnk {
	text-decoration: none;
	font-style: normal;
	color: #888;
}

a:active.lnk {
	text-decoration: none;
	font-style: normal;
	color: #000;
}

h1 {
	font-size: 1.9em;
	margin-top: 1em;
	margin-bottom: 1.9em;
	font-style: italic;
}

h2 {
	font-size: 1.6em;
	margin-top: 1.5em;
	margin-bottom: 1.5em;
}

h3 {
	font-size: 1.3em;
	margin-top: 0.9em;
	margin-bottom: 0.95em;
	font-style: italic;
}

.button {
  background-color: #222;
  border-radius: 12px;
  border: 1em;
  color: white;
  padding: 5px 9px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 2px 1px;
  cursor: pointer;
}

.button:hover,
.button:focus { 
  background-color: #16437E;
  color: #ffffff;
}

.button:active {
  background: #09223b;
  color: rgb(255, 255, 255, .7);
}

.newspaper {
	column-gap: 4em;
	column-rule: 1px solid black;
}

@media screen and (min-width: 540px) {
	.newspaper { column-count: 1; }
}

@media screen and (min-width: 1000px) {
	.newspaper { column-count: 2; }
}

@media screen and (min-width: 1360px) {
	.newspaper { column-count: 3; }
}

.message {
	position: fixed;
	width: 100%;
	top: 40%;
	left: 0;
	background: transparent;
	padding: 5px;
	font-size: 2em;
	color: red;
	font-family: "Verdana";
	line-height: 140%;
	text-align: center;
}
