@charset "UTF-8";
* {
	margin: 0;
	box-sizing: border-box;
	outline: none;
}
.logo {
	color: black;
	font-weight: bold;
	margin-left: auto;
	letter-spacing: 8px;
	margin-right: auto;
	text-align: center;
	padding-top: 15px;
	line-height: 2em;
	font-size: 30px;
}
body {
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
	background-color: red;
	
	overflow-x: hidden;
	padding: 100px;
	
}
.h1 {
	text-align: center;
	align-content: center;
	align-items: center;
	background-color: black;
	color: red;
	border-bottom-color: darkred;
}
.h2 {
	color: red;
}
.h3 {
	color: red;
}
.h4 {
	color: red;
}
.p {
	color: red;
}
.div{
	column-count: 2;
	column-gap: 40px;
	
}
.button {
	background-color: black;
	border: none;
	color: red;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	border-radius: 12px;
	transition-duration: 0.4s;
	
}
.button:hover {
	background-color:red;
	color: black;
	border: thick;
	border-radius: 0px;
}

/* images and reviews */
.column {
	float: left;
	width: 25%;
	padding: 10%;
} 
.column img {
	opacity: 0.6;
	cursor: pointer;
	
	resize: both;
	object-fit: scale-down;
}
.column img:hover {
	opacity: 1;
}
.row:after {
	content: "";
	display: table;
	clear: both;
}
.containter {
	position: relative;
	display: none;
}
#imgtext {
	position: absolute;
	bottom: 15px;
	left: 15px;
	color: white;
	font-size: 20px
}
.closebtn {
	position: absolute;
	top: 10px;
	right: 15px;
	color: white;
	font-size: 35px;
	cursor: pointer;
}

/* Review Cards */
img {
	height: 150px;
	width: auto;
	border: 3px solid black;
	align-items: center;
	align-content: center;
	
	display:block;
  	margin-left: auto;
 	margin-right: auto;
	resize: both;
	object-fit: scale-down;
 	
} 
.cards {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;	
}
img.thumbnail {
/*	height: 230px; */
	max-height: 90%;
/*	width: 230px; */
	max-width: 90%;
	border: 3px solid black;
	align-items: center;
	align-content: center;
	
	display:block;
  	margin-left: auto;
 	margin-right: auto;
	resize: both;
	object-fit: scale-down;
}
.card {
	position: relative;
	width: 1000px;
	padding-bottom: 50px;
	background-color: #fff;
	box-shadow: 0 21px 35px rgb(0 0 0 / .10);
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 40px;
	
}
.card .text {
	padding: 15px;
}
.card p{
	font-size: 16px;
	line-height: 30px;
}
.card h2{
	font-size: 32px;
	margin-bottom: 20px;
}
.card .more-btn{
	width: 100px;
	height: 100px;
	background-color:black;
	border-radius: 50%;
	position: absolute;
	bottom: -60px;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	line-height: 60px;
	color: white;
	cursor: pointer;
	z-index: 9;
	font-size: 20px;
	transition: all ease 0.5s;
}
.card .more-btn:hover{
	background-color: red;
	color: black;
}
.more-text{
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	padding: 30px;
	overflow-y: auto;
	transition: all ease 0.7s;
}
.more-text::-webkit-scrollbar{
	width: 7px;
	background-color: white;
}
.more-text::-webkit-scrollbar-thumb{
	width: 7px;
	background-color: white;
}
.more-text h2{
	color: white;
}
.more-text p{
	color: white;
	font-size: 18px;
	line-height: 30px;
	font-weight: 500;
}
.more-text.active{
	bottom: 0;
}
.center {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	border: 1px solid red;
}
.center2 {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	border: 1px solid red;
}
.footer {
	color: black;
	font-weight: bold;
	margin-left: auto;
	letter-spacing: 8px;
	margin-right: auto;
	text-align: center;
	padding-top: 200px;
	line-height: 2em;
	font-size: 30px;
}
hr {
	border-top: 3px solid black;
	background-color: black;
}
#mySearch {
	width: 100%;
	font-size: 18px;
	padding: 11px;
	border: 1px solid #ddd;
}
#movieTitles {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
#movieTitles li a {
	padding: 12px;
	text-decoration: none;
	color: black;
	display:contents;
}
#movieTitles li a:hover {
	background-color: #eee;
}
.alphabet {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	border: 1px solid red;
	object-fit: contain;
	resize: both;
	overflow:visible;
}
.a {
	color: black;
}
a:link {
  color: black;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: darkred;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: red;
  background-color: black;
  text-decoration: underline;
}
a:active {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}
.form {
	margin: auto;
	max-width: 80%;
	text-align: center;
	line-height: 30px;
}
input {
	width: 375px;
 	height: 25px;
}
/* test*/
.review {
	position:relative;
	width: auto;
	padding-bottom: 50px;
	background-color: #fff;
	box-shadow: 0 21px 35px rgb(0 0 0 / .10);
	border-radius: 6px;
	overflow:inherit;
	margin-bottom: 40px;
	padding: 20px;
	
}
iframe {
	margin: auto;
	position:inherit; /* positions out of the flow, but according to the nearest parent */
    top: 0; right: 0; /* confuse it i guess */
    bottom: 0; left: 0;
    margin: auto; /* make em equal */
	max-height: 80%;
	max-width: 80%;
	display: block;
}