:root {
	--fg-color: #000;
	--bg-color: #ffeed7;
}
body {
	background-color: var(--bg-color);
}
.grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
}
.intro {
	grid-column: 1/6;
	min-width: unset;
	width: unset;
	margin-bottom: 0px;
}
.intro p { margin-bottom: 2rem; }
.intro a {
	display: block;
	font-size: 2rem;
	text-transform: uppercase;
	margin-bottom: 2rem;
}
.greca {
	width: 16rem;
	mix-blend-mode: multiply;
}
form {
	grid-column: 7/12;
	grid-row: 1/3;
}
.campo {
	margin-bottom: 1rem;
}
form input, form label, form textarea {
	display: block;
	width: 100%;
}
form label {
	margin-bottom: 0.5rem;
	font-weight: 700;
}
form input, form textarea {
	background-color: transparent;
	border: 1px solid black;
	padding: 0.5rem;
}
form textarea {
	height: 15rem;
}
form button {
	background-color: var(--fg-color);
	color: var(--bg-color);
	border: none;
	padding: 0.5rem 2rem;
	font-weight: 700;
}
