* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	color: black;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	min-height: 100vh;
	flex-direction: column;
	margin: 0;
}

main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 100px);
	margin: 0 20%;
	padding: 50px 0;
}

h1,
p {
	text-align: center;
}

span {
	text-align: center;
}

h1 {
	margin-bottom: 50px;
	font-size: 2.8rem;
}

p {
	margin-bottom: 50px;
}

main > a {
	margin-top: 50px;
	background: linear-gradient(135deg, #a8d5b5, #4a9e6b);
	color: #fff;
	padding: 20px 40px 20px 40px;
	border-radius: 25px;
	font-weight: bold;
	font-size: 1.3rem;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

main > a:hover {
	transform: scale(1.1);
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	width: 100%;
}

.container div {
	overflow: hidden;
	height: 200px;
	border: 1.5px solid #e5e5e5;
	border-radius: 25px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.05);
	gap: 20px;
}

h2 {
	text-align: center;
}

header {
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	padding: 15px 30px;
	position: sticky;
	top: 0;
	background: #ffffff;
	background: linear-gradient(
		-45deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(237, 237, 237, 1) 90%,
		rgba(232, 232, 232, 1) 100%
	);
}

#header-text {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
}

a > img {
	align-items: flex-start;
	width: 200px;
}

#header-text > p {
	margin-bottom: 0;
	text-align: center;
	color: #004794;
}
