@charset "utf-8";
/* CSS Document */

body {
	font-family: "changeling-neo", sans-serif;
}

main {
	background-color: rgba(145, 255, 0, 0.3);
	display: flex;
	flex-flow: column wrap;
	align-items: center;
}

h1 {
	max-width: 500px;
	text-align: center;
}

h2 {
	text-align: center;
	padding-top: 10px;
	margin-bottom: -10px;
	font-size: 18px;
}

#player {
	background: rgba(22, 39, 0, 1);
	background-image: url("../images/impressions-of-Indonesia_bg.png");
	background-size: cover;
	background-position: center;
	margin: 10px 0px 10px 0px;
	padding: 10px 0px 10px 0px;
	text-align: center;
	max-width: 500px;
	border: 3px solid rgb(110, 0, 76);
	border-radius: 5px;
}

video {
	width: 90%;
	margin-top: 10px;
	box-shadow: 2px 2px 5px #162700;
}

.controls {
	display: flex;
	justify-content: center;
	background-color: rgba(145, 255, 0, 0.3);
	max-width: 500px;
	margin: 15px 0px 15px 0px;
	padding: 5px;
}

button {
	cursor: pointer;
	margin: 5px 10px 5px 10px;
	padding: 5px 10px 5px 10px;
	border-radius: 5px;
	background-color: rgba(67, 118, 0, 1);
	color: rgba(255, 129, 216, 1);
	font-family: "changeling-neo", sans-serif;
	font-weight: regular;
}

button:hover {
	box-shadow: 2px 2px 5px #162700;
	transform: scale(1.1,1.1);
}

.box-transcript {
	background-color: rgba(145, 255, 0, 0.3);
	width: 500px;
	margin-left: 3px;
}

#transcript {
  	max-width: 500px;
  	margin: 0px 0px 15px 0px;
	padding: 5px;
  	font-size: 12px;
  	list-style: none;
}

.cues {
  	color: #437600;
}

.cues:hover {
	cursor: pointer;
	font-weight: bold;
}

.cues.current {
  	color: #ff33c0;
}

.box-chapters {
	background-color: rgba(145, 255, 0, 0.5);
	width: 500px;
	margin-left: 3px;
}

#chapterMenu {
	display: flex;
	justify-content: center;
	
}

figure.img {
  margin: 10px 2px 10px 2px;
  
}

.thumb {
  max-width: 100px;
  margin: 7px;
  box-shadow: 2px 2px 5px #162700;
  transition: all 0.5s;
}

.thumb:hover {
	cursor: pointer;
    box-shadow: 3px 3px 5px #162700;
	transform: scale(1.1,1.1);
}

footer {	
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	align-items: center;
	background: rgba(110, 0, 76, 1);
	margin: 10px 0px 0px 0px;
	padding: 10px 0px 10px 0px;
	text-align: center;
}

.footer {
	color: white;
	font-family: "mr-eaves-sans", sans-serif;
	font-size: 0.9em;
	margin: 10px;
}

#logo {
	width: 7%;
	margin-left: 10px;
}

.footer a {
	color: white
}