body {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
}

h2 {
	font-family: 'Bungee', cursive;
	color: #ffffff;
	margin: 0;
	font-weight: 400;
}

h3 {
	font-size: 18px;
	margin: 0;
	margin-bottom: 7px;
	padding: 0;
	font-weight: 500;
}

p {
	font-size: 15px;
	margin: 5px 0 25px 0;
}

a {
	text-decoration: none;
}

/* width */
::-webkit-scrollbar {
	width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
	background: rgb(255, 255, 255);
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: rgb(124, 124, 124);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: rgb(124, 124, 124);
}

/**********************************************************************/

.search_container {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	z-index: 1;
	background-image: linear-gradient(to right, rgb(80, 80, 80), rgb(124, 124, 124));
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.search-item {
	width: 33%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.search_container img {
	height: 50px;
}

.search_container input {
	width: 100%;
	font-size: 18px;
	border-radius: 30px;
	border: thin solid #ffffff;
	background: inherit;
	padding: 5px 20px;
	outline: 0;
	color: white;
}

.about_btn {
	text-decoration: none;
	color: white;
	position: fixed;
	font-size: 20px;
	top: 5px;
	right: 5px;
}

/**********************************************************************/

.results_container {
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	overflow-y: scroll;
	padding: 5px;
}

.movie_div {
	box-sizing: border-box;
	width: 20%;
	height: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
}

.movie_div img {
	width: 100%;
	border-radius: 3px;
}

/**********************************************************************/

.movie-details {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	color: white;
}

.back_btn {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	top: 0;
	bottom: 0;
	left: 0;
	width: 30px;
	background: rgb(80, 80, 80);
	z-index: 1;
}

.back_btn:hover {
	font-size: 21px;
}

.movie-info {
	position: fixed;
	top: 0;
	left: 30px;
	right: 0;
	bottom: 0;
	padding: 25px 20px 25px 20px;
	overflow-y: auto;
	background-image: linear-gradient(to right, rgb(80, 80, 80), rgb(124, 124, 124));
}

.movie-info-header {
	width: 100%;
	font-size: 22px;
	font-weight: 500;
	margin: 0px 0 25px;
	display: flex;
	align-items: center;
}
.movie-info-header a {
	background: none;
	position: inherit;
	color: #dba408;
	font-size: 28px;
	font-weight: 300;
	margin: 0 20px;
}
.movie-info-header a:hover {
	font-size: 28px;
}

.movie-info-body {
	display: flex;
	width: 100%;
}
.poster_div {
	width: 30%;
}
.poster_div img {
	width: 100%;
}

.movie-info-part {
	width: 70%;
	padding: 0 20px;
}
.movie-info-part img {
	position: fixed;
	bottom: 10px;
	right: 20px;
	width: 60px;
}

.no-result_div,
.loader_div {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 25px;
	background-image: linear-gradient(to right, rgb(80, 80, 80), rgb(124, 124, 124));
}

@media only screen and (max-width: 650px) {
	.search_container {
		flex-direction: column;
		justify-content: space-evenly;
		height: 130px;
	}
	.search-item {
		width: 100%;
	}
	.search_container input {
		width: 85%;
	}
	.search_container img {
		display: none;
	}

	.results_container {
		top: 130px;
	}
	.movie_div {
		width: 50%;
	}

	.movie-info-body {
		flex-direction: column;
	}
	.poster_div {
		width: 100%;
	}
	.poster_div img {
		width: 100%;
		margin-bottom: 15px;
	}

	.movie-info-part {
		width: 100%;
		padding: 0;
	}

	.movie-info-part img {
		display: none;
	}
}
