/*styles.css*/
::selection {
  color: white; 
  background: #572F47;
}

body {
	font-size: 1.6rem;
	font-family: 'Roboto', sans-serif;
}

.wrapper {
	max-width: 100rem;
	margin: 0 auto;
	padding: 0 2rem;
}

main {
	margin-top: 5rem;
}

h2 {
	margin-bottom: 3rem;
}


/* HEADER */

header {
	margin-top: 3rem;
	margin-bottom: 3rem;
}


header .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

/*image replacement */
h1 a {
	display: block;
	width: 204px;
	height: 5rem;
	white-space: nowrap;
	text-indent: 100%;
	overflow: hidden;
	background-image: url(../img/kinema_logo.png);
	background-size: 100% 100%;
}

nav {
	
	color: #572F47;
}

nav ul {
	display: none;
}

nav ul li a {
	text-decoration: none;
	text-transform: uppercase;
	padding-right: 1rem;
}

nav ul li a:hover {
	color: #a45885;
}

a, a:visited, a:hover, a:active {
	color: inherit;
}



/* FOOTER */
footer {
	margin-top: 2rem;
	text-align: center;
	background-color: #572F47;
	color: #fff;

	border-top: solid 0.2rem #000;
}

footer .wrapper {
	padding: 2rem;
	display: flex;
	justify-content: space-around;
}

.fab {
	font-size: 2rem;
}

/*menu mobile */

.burger {
	font-size: 4rem;
	color: #572f47;
}

.burger:hover {
	cursor: pointer;
}

#menu2 {
	display: none;
	text-align: center;
	text-transform: uppercase;
	margin-top: 1.5rem;
}

#menu2 li {
	background-color: #572F47;
	color: #fff;
	padding: 1rem;
}

#menu2 li:hover {
	background-color: #7d4466;
}

#menu2 a {
	display: block;
	text-decoration: none;
}

.active {
	color: #a45885;
}

#menu2 .active {
	background-color: #7d4466;
}

/* test fill page */
body {
	display: flex;
  	min-height: 100vh;
  	flex-direction: column;
}

main {
	flex: 1;
}

/*media queries*/


@media (min-width: 62.5rem){ /*1000px*/

	header {
		
	}

	nav ul {
		display: flex;
		justify-content: space-between;
	}

	.burger {
		display: none;
	}

	#menu2 {
		display: none;
	}
}