@import url('https://fonts.googleapis.com/css?family=Merriweather');


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Merriweather", serif;
  font-size: 0.9em;
  background-color: #fff;
  color: black;
  padding-bottom: 0px;
  overflow-x: hidden;
} 

/* Change background color of links on hover */
ul.navbar-nav li a:hover {background-color: #4da6ff}

a.nav-link {color: white}

a:visited {color: white}


#topgrad {
background: rgba(0, 0, 0, 0.5); /* For browsers that do not support gradients */
background: -webkit-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,1)); /*Safari 5.1-6*/
background: -o-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,1)); /*Opera 11.1-12*/
background: -moz-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,1)); /*Fx 3.6-15*/
background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1)); /*Standard*/
width: 100%;
padding-bottom: 20px;
text-align: center;
}


#headline {
	color: white;
	text-transform: none;
	font-weight: bold;
	padding-right:5%;
	padding-left:5%;
}

#lede {
	color: white;
	text-transform: none;
	font-weight: none;
	padding-right:5%;
	padding-left:5%;
}


#intro {
	padding: 30px 10px;
	font-size: 1.02em;
	line-height: 1.6em;
	padding-right:5%;
	padding-left:5%;
	background: #005689;
	color: white;
}


@media only screen and (min-width: 1200px) {
	#headline {font-size: 70px}
	#lede {font-size: 30px;}	
}


@media only screen and (min-width: 992px) and (max-width:1199px) {
	#headline {font-size: 60px}
	#lede {font-size: 28px;}	
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	#headline {font-size: 50px}
	#lede {font-size: 25px;}
}

@media only screen and (min-width: 576px) and (max-width:767px) {
	#headline {font-size: 40px}
	#lede {font-size: 20px;}	
	#mascot {display: none}
}


@media screen and (max-width: 575px) {
	#headline {font-size: 30px}
	#lede {font-size: 16px;}
	#mascot {display: none}
}

.slide img {
	 -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.slide img:hover {
	-moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

h1 {
  font-size: 2.2em;
  color: black;
  text-align: center;
  padding: 15px;
}

.games-title {
	font-size: 1.8em;
	text-align: center;
	background-color: #990099;
	color: white;
	transform: skew(-15deg);
	border-left: 5px solid #660066;
}


h3 {
	font-size: 1.2em;
	text-align: center;
}

/*Image caption style*/
h4 {
	font-size: 1em;
	line-height: 1.4em;
	margin-top: 10px;
	width: 100%;
	color: white;
}

.sports {
	background-image: url("sports.png");
}

img {
	max-width: 100%; height: auto;
}

img.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-top: 15px;
}

.icap {
	padding: 5px 0 0 0;
	width: auto;
	font-weight: bold;
	font-size: 0.9em;
}

/*Table style*/
#myTable {
	margin: 0px auto;
	overflow-x: auto;
	font-size: 1em;
}
.gold {color: #FFD700}
.silver {color: #C0C0C0}
.bronze {color: #CD7F32}


 th {
height: 25px;
padding: 10px;
text-align: center;
background-color: rgba(51, 204, 255, 0.6);	
 }

 td {
height: 25px;
padding: 5px;
text-align: center;
background-color: rgba(230, 249, 255, 0.8);	
 }
 
 th, td {
    border-bottom: 1px solid #ddd;
}


@media screen and (max-width: 565px) {
#myTable {font-size: 0.8em}
}


#vietnam {
	background-color: #cc0000;
	color: white;
	margin-bottom: 50px;
}


video {
	width: 100%;
	height: auto;
}


/*Parallax*/
body, html {
  height: 100%;
  width: 100%;
}

.bgimg {
  position: relative;
  opacity: 1;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  background-image: url("cover.jpg");
  min-height: 100%;
  z-index: 1;
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
    .bgimg {
        background-attachment: scroll;
    }
}
 
 
.footer {
  background: #333333; /* For browsers that do not support gradients */
  color: white;
  padding-left: 10%; padding-right: 10%; padding-top: 20px; padding-bottom: 20px;
  margin-top: -16px;
}

hr {
	margin-left: 5%; margin-right: 5%;
	height: 10px;
	border: 0;
	box-shadow: 0 10px 10px -10px #8c8b8b inset;
}


/*Back to top*/
#btt {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color:rgba(204, 0, 102, 0.5);
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px;
	z-index: 99999;
}
#btt span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#btt:hover {
    background-color:#e74c3c;
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}

.latest-news-link:hover{
	text-decoration: none;
}