* {
	box-sizing: border-box;
}
html{
    color: white;
    background-image: url(images/kira.png);
		background-position: center top;
		background-color: purple;
    font-family: 'saira',sans-serif;
}
p, li{
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 1.3;
}
td{
	border: 3px solid black;
	border-radius: 15px;
	background:rgba(0,0,0,0.5);
}
td:hover{
	background-color:purple;
}
.header{
	border: 3px solid black;
	border-radius: 15px;
	margin: 20px auto;
	width: 600px;
	font-family: 'saira_condensedsemibold',sans-serif;
	text-align: center;
	background-image: url(images/clown.gif);
	background-position: center;
	background-color: gray;
}
.header h1{
	margin: 100px 0 5px 0;
	color: green;
	text-shadow: 0 5px 1px darkgreen;
	font-size: 60px;
	text-align: center;
}
.header h2{
	margin: 0 0 100px 0;
	color: yellow;
	text-shadow: 0 2px 1px orange;
	font-size: 25px;
}
.navbar{
	margin: 0 auto;
	padding: 5px;
	width: 600px;
	text-align: center;
}
.navbar ul{
	border: 3px solid black;
	border-radius: 15px;
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-image: url(images/space.jpg);
	background-color: gray;
}
.navbar li{
	display:inline;
}
.navbar li a{
	display: inline-block;
	color: white;
	font-weight: bold;
	text-align: center;
	padding: 14px 16px;
	width:24%;
	text-decoration: none;
}
.navbar li a:hover{
	background:rgba(0, 0, 0, 0.5);
}
.row{
	text-shadow: 2px 2px 1px black;
	margin: auto;
	width:800px;
	max-width:100%;
	box-sizing: border-box;
}
.row:after{
	content: "";
	display: table;
	clear: both;
}
.lcol{
	float: left;
	height: inherit;
	padding-right: 10px;
}
.rcol{
	float: left;
	height: inherit;
	padding-left: 10px;
}
.card{
	background-image: url(images/space.jpg);
	background-color: gray;
	border: 3px solid black;
	border-radius: 15px;
	font-weight: bold;
	padding: 20px;
	margin: 20px auto;
}
.cardtxt{
	background: rgba(0,0,0,0.8);
	padding: 0 10px;
	border: 3px solid black;
	border-radius: 15px;
	margin: 5px;
	word-wrap: break-word;
}
.frame{
	border: 3px solid black;
	border-radius: 15px;
	background-color: grey;
	max-width: 100%;
	margin: auto;
	overflow: hidden;
}
.row:after{
	content: "";
	display: table;
	clear: both;
}
.footer{
	border: 3px solid black;
	border-radius: 15px;
  margin: 5px auto 20px;
	width: 600px;
	background-image: url(images/space.jpg);
	background-color: gray;
	text-align: center;
	box-sizing: border-box;
}
.center{
	text-align: center;
	margin-left:auto;
	margin-right:auto;
}
.center img{
	display:block;
	margin:10px auto;
}
.corner{
	position:fixed;
	right:-100px;
	bottom:-150px;
	max-width:25%;
}
.corner:hover{
	right:0;
	bottom:0;
}
.marquee{
	margin: 0 auto;
	padding: 20px 0 20px 0;
	overflow: hidden;
	color: white;
	white-space:nowrap;
	font-weight:bold;
	text-align: center;
	text-shadow: 2px 2px 1px black;
	font-size: 16px;
	box-sizing: border-box;
}
.marquee span{
	display: inline-block;
	animation-name: marquee;
	animation-duration: 120s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
@keyframes marquee{
	0%{
		transform: translateX(600px)
	}
	100%{
		transform: translateX(-100%);
	}
}
@font-face {
    font-family: 'saira';
    src: url('files/saira-variablefont_wdthwght-webfont.woff2') format('woff2'),
         url('files/isaira-variablefont_wdthwght-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
    font-family: 'saira_condensedsemibold';
    src: url('files/sairacondensed-semibold-webfont.woff2') format('woff2'),
         url('files/sairacondensed-semibold-webfont.woff') format('woff');
    font-weight: normal;
	font-style: normal;
}
