:root {
	--bg: #F5F6F7;
	--text: #2D3137;
	--muted: #6E747B;
	--accent: #405A73;
	--line: #D9DEE2;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	height: 100%;
}
body {
	font-family: "Manrope", sans-serif;
	background: var(--bg);
	color: var(--text);
	height: 100vh;
	overflow: hidden;
}
.background {
	position: fixed;
	inset: 0;
	background-image: url("background.png");
	background-repeat: no-repeat;
	background-position: 30% center;
	background-size: 60%;
	opacity: .1;
	pointer-events: none;
    z-index: -1;
}
main {
	max-width: 1200px;
	height: 100vh;
	margin: auto;
	padding: 64px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	animation: fade 700ms ease;
}
.hero {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 120px;
	align-items: center;
	flex: 1;
}
h1 {
	font-size: 64px;
	font-weight: 700;
	letter-spacing: -2px;
	margin-bottom: 10px;
}
.profession {
	font-size: 22px;
	color: var(--accent);
	margin-bottom: 36px;
}
.lead {
	font-size: 20px;
	line-height: 1.8;
	max-width: 560px;
	color: var(--muted);
}
.services h2 {
	font-size: 20px;
	margin-bottom: 26px;
}
.services ul {
	list-style: none;
	margin-bottom: 40px;
}
.services li {
	padding: 10px 0;
	border-bottom: 1px solid var(--line);
}
.button {
	display: inline-block;
	padding: 15px 28px;
	border: 1px solid var(--accent);
	text-decoration: none;
	color: var(--accent);
	transition: .25s;
}
.button:hover {
	background: var(--accent);
	color: white;
	transform: translateY(-2px);
}
footer {
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	color: var(--muted);
	padding-top: 30px;
	border-top: 1px solid var(--line);
}
footer a {
	text-decoration: none;
	color: inherit;
	transition: .2s;
}
footer a:hover {
	color: var(--accent);
}
@keyframes fade {
from {
	opacity: 0;
	transform: translateY(10px);
}
to {
	opacity: 1;
	transform: none;
}
}
@media(max-width:900px) {
body {
	overflow: auto;
}
main {
	height: auto;
	padding: 32px;
}
.hero {
	grid-template-columns: 1fr;
	gap: 60px;
}
.background {
	background-size: 90%;
	background-position: center top;
}
h1 {
	font-size: 44px;
}
footer {
	margin-top: 60px;
	flex-direction: column;
	gap: 12px;
}
}
