:root {
	--green: #004225;
	--white: #fbfbff;
	--light: #f6d365;
	--dark: #f2c023;
	--dgreen: #00351e;
}

* {
	font-family: 'Quicksand', sans-serif;
	color: var(--green);
	background-color: var(--white);
}

h1 {
	font-size: 6vw;
	font-weight: bold;
}

table {
	border-collapse: collapse;
	width: 100%;
	height: auto;
	margin-bottom: 0px;
	margin-top: 0px;
}
.button {
    background-color: var(--green);
    color: var(--light);
	font-size: 5vw;
	font-weight: 700;
	width: 100%;
	height: 10vw;
	border: none;
	border-radius: 2vw;
}

.button:focus {
	color: var(--dark);
	background-color: var(--dgreen);
}
