body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	background-color: #f8f9fa;
	color: #333;
	display: flex;
	flex-direction: column;
	height: 100%;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1em 2em;
	background-color: #248B00;
	color: #fff;
	font-weight: bold
}

header a {
	color: #fff;
	letter-spacing: 0.05em;
	padding: 0 3em;
	font-weight: bold
}

header a:hover {
	text-decoration: underline;
}

main .content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2em;
	justify-items: center;
	align-items: center;
	margin: 2em auto;
	width: 80%;
}

h1 {
	color: #248B00;
	text-decoration-line: underline;
	font-size: 2.5em;
	margin-bottom: 1em;
	text-align: left;
	margin-left: 2em;

}


.circle,
.square {
	text-align: center;
	padding: 1em;
	background-color: #68C348;
	color: #fff;
	box-shadow: 10px 10px 10px 0px #6c6c6c;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 250px;
	height: 250px;
}

.circle {
	border-radius: 50%;
}

.columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5em;
	margin: 2em auto;
	width: 80%;
}

.columns .box {
	background-color: #68C348 !important;
	color: #fff !important;
	text-decoration: none;
	padding: 1em;
	text-align: center;
	width: 250px;
	box-shadow: 10px 10px 10px 0px #6c6c6c;
	transition: transform 0.3s ease;
}

.columns .box:hover {
	transform: scale(1.05);
}

.site-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
}

footer {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	padding: 1em;
	background-color: #248B00;
	color: #fff;
	text-align: left;
	margin-top: auto;
	text-decoration-color: #ffffff;
}

a:link,
a:visited {
	color: #ffffff;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:active {
	color: #6c6c6c;
}

.link-type2:link,
.link-type2:visited {
	color: #000000;
	text-decoration: none;
}

.link-type2:hover {
	text-decoration: underline;
}

.link-type2:active {
	color: #6c6c6c;
}