* {
	box-sizing: border-box;
}

body {
	font-family: 'Old Standard TT';
	/* font-family: Arial; */
	padding: 20px;
	background: white;
	font-size: medium;
}

/* Header/Blog Title */
.header {
	border-radius: 15px;
	font-family: 'Old Standard TT';
	padding: 15px;
	/* text-align: center; */
	background: #f1f1f1;
}

.header h1 {
	border-radius: 10px;
	font-family: 'Old Standard TT';
	font-size: xx-large;
}

/* Style the top navigation bar */
.topnav {
	border-radius: 10px;
	overflow: hidden;
	background-color: #153957;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {  
	border-radius: 10px;
	background-color: white;
	float: left;
	width: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  background-color: white;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
	border-radius: 10px;
	background-color: #f1f1f1;
	padding: 20px;
	margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.singlecolumn {
	border-radius: 10px;
	padding: 10px;
	text-align: center;
	margin-top: 20px;
	background: #f1f1f1;
}

/* Footer */
.footer {
	border-radius: 10px;
	padding: 10px;
	text-align: center;
	background: #ddd;
	margin-top: 20px;
}

/* 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) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}

.info {
	padding: 40px;
	text-align: center;
}

/* sliding news */

/* OUTER CONTAINER */
.tcontainer {
  width: 100%;
  overflow: hidden; /* Hide scroll bar */
}
 
/* MIDDLE CONTAINER */
.ticker-wrap {
  width: 100%;
  padding-left: 100%; /* Push contents to right side of screen */
  /* background-color: #eee; */
}

/* INNER CONTAINER */
@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}
.ticker-move {
  /* Basically move items from right side of screen to left in infinite loop */
  display: inline-block;
  white-space: nowrap;
  padding-right: 100%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 10s;
}
.ticker-move:hover{
  animation-play-state: paused; /* Pause scroll on mouse hover */
}

/* ITEMS */
.ticker-item{
  display: inline-block; /* Lay items in a horizontal line */
  padding: 0 2rem;
}