@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
	--primary-clr: #22254b;
	--secondary-clr: #373b69;
}

* {
	box-sizing: border-box;
}

/* 8. Screen reader */

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border-width: 0;
}

body {
	background-color: var(--primary-clr);
	font-family: "Poppins", sans-serif;
	margin: 0;
}

header {
	padding: 1rem;
	display: flex;
	justify-content: flex-end;
	background-color: var(--secondary-clr);
}

.search {
	background-color: transparent;
	border: 2px solid var(--primary-clr);
	border-radius: 50px;
	font-family: inherit;
	color: #fff;
	font-size: 1rem;
	padding: .5rem 1rem;
}

.search::placeholder {
	color: #7378c5;
}

.search:focus {
	outline: none;
	background-color: var(--primary-clr);
}

main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.movie {
	background-color: var(--secondary-clr);
	width: 280px;
	margin: 1rem;
	box-shadow: 0 4px 5px rgba(0,0,0,.2);
	position: relative;
	overflow: hidden;
	border-radius: 3px;
}

.movie img {
	width: 100%;
}

.movie-info {
	color: #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .5rem 1rem 1rem;
	letter-spacing: .5px;
}

.movie-info h2 {
	margin-top: 0;
}

.movie-info span {
	background-color: var(--primary-clr);
	padding: .25rem .5rem;
	border-radius: 3px;
	font-weight: bold;
}

.movie-info span.green {
	color: lightgreen;
}

.movie-info span.orange {
	color: orange;
}

.movie-info span.red {
	color: red;
}

.overview {
	background-color: #fff;
	padding: 2rem;
	position: absolute;
	max-height: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	transform: translateY(101%);
	overflow: auto;
	transition: transform .3s ease-in;
}

.movie:hover .overview {
	transform: translateY(0);
}