@font-face {
	font-family: Biko_Regular;
	src: url("biko/Biko_Regular.otf") format("opentype");
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	color: white;
	background-image: url(../images/back.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	min-height: 100%;
	display: flex;
    flex-direction: column;
    font-family: Biko_Regular;

}

header {
	flex: 0 0 auto;
}

.main-content {
   flex: 1 0 auto;
}

footer {
   flex: 0 0 auto;
}
.clear {
	clear: both;
	content: '';
	display: table;
}

.main-info {
	font-family: "Star Jedi Hollow"; 
	
}
h1 {
    font-size: 48px; 
    margin-bottom: 0;
    text-align: center;
	color: yellow;
}

h3 {
	font-size: 32px;
	margin: 0;
	text-align: center;
	color: yellow;
}

h2 {
	margin: 20px 0 0 20px;
}

.main-page {
	display: flex;
	flex-flow: row wrap;
	padding: 20px 50px;
	justify-content: space-around;
}

.menu-pages {
	width: inherit;
	height: inherit;
	border-radius: 5px;
	border-radius: 20px solid yellow;
}

.breadcrumbs {
	width: 1000px;
	margin: 0 auto;
	/*margin-left: 20%;*/
	display: none;
}

.crumbs {
	display: inline-block;
	margin: 5px;
}

.crumbs:hover, .name:hover,
.main-page > div:hover,
.related-pagintaion > span:hover  {
	cursor: pointer;
}

.main-page > div {
	position: relative;
	width: 500px;
	height: 300px;
	background: blue;
	color: yellow;
	margin-bottom: 100px;
	border-radius: 5px ;
}

a {
	text-decoration: none;
	width: inherit;
	height: inherit;
}


.main-page > div > p {
	padding: 5px 0 5px 10px;
	width: 500px;
	font-size: 20px;
	bottom: 10px;
	margin: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.7);
	position: absolute;
}
.page-content {
	min-height: 400px;
	margin: 0 auto;
	width: 80%;
	flex-flow: row wrap;
	justify-content: space-around;
}

.pagination {
	width: 100%;
	text-align: end;
}

.pagination > span {
	margin: 10px;
    padding: 4px 5px 0 5px;
    border-radius: 5px;
    border: 1px solid black;
    width: inherit;
    text-align: center;
    line-height: 5px;
    background-color: black;
}

.pagination > span:hover {
	cursor: pointer;
	box-shadow: 1px 1px 10px black;
}

.pagination > span:active {
	box-shadow: 1px 1px 10px yellow;
}

.page-content {
	width: 1000px;
	display: flex;
	flex-flow: row wrap;
	margin: 0 auto;
	padding: 0 25px;
	display: none;
	justify-content: flex-start;
}

.name, .filmsName {
	width: 150px;
	height: 200px;
	background-color: blue;
	margin: 20px;
	position:relative;
	border-radius: 3px;
}
.name > span, .filmsName > span {
	width: inherit;
	height: 50px;
	text-align: center;
	background-color: white;
	color: black;
	position: absolute;
	bottom: 0;
	border-radius: 0 0 3px 3px;
	padding: 10px 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.filmsName > span {
	width: inherit;
	height: 50px;
	line-height: normal;
}

.footer {
	width: 100%;
	height: 100px;
	background-color: black;
	bottom: 0;
	left: 0;
	margin: 0;
	text-align: center;
	line-height: 100px;
	color: yellow;
}

.desc {
	width: 120%;
	color: black;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.desc > div {
	background-color: white;
	border-radius: 5px;	
}

.second {
	width: 100%;
	height: 300px;
	margin-bottom: 10px;
	display: flex;
	flex-flow: column wrap;
	align-content: flex-start;
	background-color: white;
}

.second > span {
	padding-top: 5px;
	padding-left: 20px;
	display: block;
	font-family: ;
	font-size: 0.9em;
	color: grey;
}

.second > span:last-child {
	width: 75%;
}
#img {
	height: 300px;
	width: 200px;
	background-color: blue;
	border-radius: 5px 0 0 5px;
}

.related-container {
	width: 49%;
	height: 150px;
	margin: 10px 0;
	display: flex;
	text-align: center;
	flex-direction: column;
	justify-content: space-between;
	/*padding: 20px;*/

}
.related-container > div:first-child {
	padding: 10px;
	border-bottom: 1px solid grey;
}

.related-container > div:last-child {
	padding: 10px;
	border-top: 1px solid grey;

}

.main-content > div {
	display: none;
}



