@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ysabeau+SC&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
	color: #1B2707;
}

body {
	overflow-x: hidden;
	background: rgb(176,180,170);
	background: linear-gradient(351deg, rgba(176,180,170,1) 0%, rgba(255,255,255,1) 50%);
}

header {
	z-index: 1;
	width: 100vw;
	padding: 1.5em;
	position: fixed;
	background-color: #fff;
}

.brand {
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Ysabeau SC', sans-serif;
	font-weight: 500;
	font-size: 1.5em;
	gap: .5em;
	text-decoration: none;
}

.brand .logo {
	height: 1.5em;
}

main {
    min-height: 100vh;
	width: 100vw;
    display: flex;
    justify-content: center;
    padding: 10em;
}

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100vw;
	background-color: #1B2707;
	padding: 1em;
    text-align: center;
}

footer .work-in-progress {
    color: #fff;
    
	text-transform: uppercase;
	font-weight: bold;
    margin-bottom: 1em;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 468px) {
	header {
		padding: 1em;
	}
	
	main {
		padding-top: 6em;
	}
}