* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
}

body {
	background-color: burlywood;
	height: 100vh;
}

.search-bar {
	text-align: center;
	width: 100%;
	padding: 20px 0;
	font-family: "Ubuntu", sana-serif;
}
.search-bar .logo a {
	color: #5a4125;
	font-size: 45px;
	font-weight: 600;
}

.search-bar .logo a span {
	color: #038103;
	transition: all 0.3s ease;
}

#inputValue {
	width: 500px;
	outline: none;
	color: #495057;
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	text-align: center;
	padding: 0.375rem 0.75rem;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 0.75;
}

.logo h3 {
	font-size: 1.2rem;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	color: #433729;
}

.logo h3 span {
	font-size: 1.5rem;
	font-weight: 600;
	color: #433729;
}

.form-group {
	margin-bottom: 0.1rem;
}

#searchTab {
	display: inline-block;
	background: #038103;
	color: #fff;
	font-size: 25px;
	padding: 10px 36px;
	margin-top: 5px;
	border-radius: 6px;
	border: 2px solid #02eb02;
	transition: all 0.3s ease;
}
#searchTab:hover {
	color: #02eb02;
	background: #5a4125;
}

.movie {
	margin-bottom: 50px;
}

section {
	display: flex;
	width: 100%;
	overflow-x: auto;
}

::-webkit-scrollbar {
	width: 1px;
}

section img {
	width: 200px;
	transition: 250ms all;
	border-radius: 5%;
	padding: 2px;
}

img:hover {
	margin-left: 0 40px;
	transform: scale(1.15);
	cursor: pointer;
}

.content {
	border: 1px red;
	display: none;
}

.content div {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	align-items: center;
	margin: 10px;
}
.content-display {
	display: block;
	padding-bottom: 20px;
	background-color: #433729;
	border-radius: 2%;
}
#content-close {
	vertical-align: middle;
	border: none;
	color: inherit;
	border-radius: 50%;
	background: transparent;
	position: relative;
	width: 32px;
	height: 32px;
	opacity: 0.6;
	cursor: pointer;
}

#content-close:focus,
#content-close:hover {
	opacity: 1;
	background: rgba(128, 128, 128, 0.5);
}
#content-close:active {
	background: rgba(128, 128, 128, 0.9);
}
/* tines of the X */
#content-close::before,
#content-close::after {
	content: " ";
	position: absolute;
	top: 50%;
	left: 50%;
	height: 20px;
	width: 4px;
	background-color: currentColor;
}
#content-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
#content-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.movie h2 {
	font-size: 1.7em;
	text-align: center;
	font-weight: 600;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	color: #25211c;
	padding-bottom: 10px;
}
