:root{
	--main-color: #c10e1a;
}
html{
	scroll-behavior: smooth;
}
body{
	padding: 0;
	margin-top: 1%;
	font: 28px/1.1 "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
	background: #f5f5dc;
	color: #292928;
}
.goobBye{
	text-transform: uppercase;
	margin: 1rem 0;
	letter-spacing: -1px;

	img{
		margin-bottom: 2vh;
	}

	b{
		font-weight: 500;
	}

	p{
		
	}

	p + p{
		font-size: 60%;
		color: dimgray;
		line-height: 1.3;
	}
}
@media (max-width: 767.98px) {
	body{
		font-size: 22px;
		margin-top: 5%;
	}
	.vh-100{
		height: auto;
	}
}
.divider {
	opacity: 1;
	width: 100%;
	height: 4px;
	background: #292928;
	margin: 2rem 0;
}

.header{
	font-weight: 300;
	font-style: normal;
	font-size: min(6.5vh, 11vw);
	line-height: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

	span{
		color: var(--main-color);
	}
}
.cartazes a{
	img{
		will-change: auto;
		box-shadow: 0 10px 20px -10px #000;

		filter: grayscale(.95);
		opacity: .9;
		transition: all .5s ease-in-out;

		&:hover{

			filter: grayscale(0);
			opacity: 1;
		}
	}
}
.credits{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: auto;
	font-size: 12px;
}
@media screen and (max-width: 801px){
	.inner a{
		flex: 0 0 45%;
	}

	.inner a img:not(:hover){
					opacity: 1;
					filter: grayscale(0);
				}
}