@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,700&display=swap&subset=latin-ext');

body {
	width: 100%;
	margin: 0 auto;
	font-family: 'Titillium Web', 'Tahoma', sans-serif;
	text-align: center;
	background-color: white;
	color: black;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

header img {
	position: absolute;
	width: 100px;
	left: 50%;
	top: 20px;
	transform: translate(-50%, 0);
	animation: fadein 1s ease;
}

header h1 {
	font-size: 30px;
	margin: 120px 0 0 0;
}

header h1 .heading-one-text {
	margin-left: 0;
}

header h1 .heading-two-text {
	margin-left: 10px;
}

header h1 .heading-break {
	display: none;
}

@media (min-width: 380px) {
	header img {
		top: 50px;
		width: 120px;
	}

	header h1 {
		font-size: 50px;
		margin: 180px 0 0 0;
	}

	header h1 .heading-two-text {
		margin-left: 20px;
	}

	@media (min-width: 600px) {
		header img {
			top: 50px;
			transform: translate(-120%, 0);
			width: 200px;
		}

		header h1 {
			margin: 75px 0 0 0;
		}

		header h1 .heading-one-text{
			margin-left: 200px;
		}
		
		header h1 .heading-two-text{
			margin-left: 400px;
		}

		header h1 .heading-break {
			display: inline;
		}
	}
}

header h1 span:nth-of-type(2) { animation-delay: .05s; }
header h1 span:nth-of-type(3) { animation-delay: .1s; }
header h1 span:nth-of-type(4) { animation-delay: .15s; }
header h1 span:nth-of-type(5) { animation-delay: .2s; }
header h1 span:nth-of-type(6) { animation-delay: .25s; }
header h1 span:nth-of-type(7) { animation-delay: .3s; }
header h1 span:nth-of-type(8) { animation-delay: .35s; }
header h1 span:nth-of-type(9) { animation-delay: .4s; }
header h1 span:nth-of-type(10) { animation-delay: .45s; }
header h1 span:nth-of-type(11) { animation-delay: .5s; }

header h1 .heading-one-text, header h1 .heading-two-text{
	position: relative;
  }
 
header h1 .heading-word{
	opacity: 0;
}
  
header h1 .heading-one-bg, header h1 .heading-two-bg{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
	transform-origin: left;
	transform: scaleX(0);
}

header h1 .heading-one-bg{
	background-color: #E98074;
}

header h1 .heading-two-bg{
	background-color: #D8C3A5;
}

.web_icons {
	margin: 30px 0 30px 0;
	animation: fadein 1s ease 0.5s both;
}

@media (min-width: 380px) {
	.web_icons {
		margin: 50px 0 50px 0;
	}

	@media (min-width: 600px) {
		.web_icons {
			margin: 100px 0 80px 0;
		}
	}
}

.web_icons > .item {
	display: inline;
	margin: 0 20px;
}

.web_icons > .item a {
	text-decoration: none;
}

.rss_links {
	animation: fadein 1s ease 1s both;
}

table {
	text-align: left;
	margin: 0 auto; 
}

tr.hidden {
	display: none;
}

td.table-date {
	white-space: nowrap;
	vertical-align: middle;
}

td {
	padding: 10px 10px;
}

@media (min-width: 600px) {
	td {
		padding: 5px 40px;
	}
}

p, a, td {
	font-size: 16px;
	margin: 20px 0px;
}

@media (min-width: 600px) {
	p, a, td {
		font-size: 16px;
	}
}

a, a:link, a:visited {
	color: black;
	text-decoration: underline;
}

a:hover, a:active {
	color: #E85A4F;
	text-decoration: underline;
	fill: #E85A4F;
}