* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	font-size: 18px;
}
body {
	font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
	width: 100%;
	height: 100svh;
	display: grid;
	grid-template-rows: 1fr 2rem;
	gap: 3rem;
}
h2 {
	font-size: 1.3rem;
	font-weight: 500;
}
p {
	margin: 1rem 0;
}
a, a:visited {
	display: block;
	text-decoration: none;
	color: #F5BB1E;
	font-weight: 700;
	padding: 0.4rem 1rem;
}
a:hover {
	text-decoration: none;
	color: #333;
	background: #F5BB1E;
}
header {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
header img {
	width: 350px;
	max-width: 80%;
}
main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	text-align: center;
	gap: 2rem;
	max-width: 800px;
	margin: 1rem auto 0;
}
.content {
	padding: 0 0.5rem;
}
.projects {
	padding: 0.5rem 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.2rem;
	width: 12rem;
	margin: 0 auto;
}
.project {
	display: block;
	text-transform: uppercase;
}
.buttons {
	margin-top: 0.5rem;
	text-align: center;
}

.content .buttons {
	margin-top: 1.5rem;
}

.transparency {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100svw;
	height: 100svh;
	background: #00000080;
}

.win {
	padding: 1rem 1rem 0.5rem;
	background: #fff;
	box-shadow: 0 0 1rem 0 #00000080;
	min-width: 300px;
}

#form p {
	padding: 0.25rem 0;
}
label {
	display: block;
	margin-bottom: 0.1rem;
	max-width: 90%;
	width: 20rem;
	padding-left: 0.1rem;
}

input, textarea {
	display: block;
	padding: 0.5rem;
	border: 1px solid #333;
	border-radius: 0.1rem;
	width: 100%;
	font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
	font-size: 1rem;
}
textarea {
	height: 8rem;
}

button {
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
	text-transform: uppercase;
	margin: 0.25rem 0.5rem;
}
ul, ol {
	margin: 0.5rem 0 0.5rem 1rem;
	padding: 0
}
li {
	padding: 0;
	margin: 0;
}


footer {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	text-align: center;
	font-size: 0.8rem;
}

@media (max-width: 480px) {
	html {
		font-size: 16px;
	}
}