#section3	{
	grid-column: 3 / 4;
	height: 0;
}

#contactContainer	{
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	align-items: center;
	background-color: #a63865;
	font-size: 24px;
	padding: 50px;
}

#contactContainer table	{
	width: 100%;
	height: 80%;
	background-color: white;
	border-radius: 10px;
	position: relative;
	padding: 30px;
	border-spacing: 10px;
}

#contactContainer tr	{
	width: 100%;
}

#contactContainer input	{
	font-size: 32px;
	width: 100%;
	height: 100%;
	padding: 5px 10px;
}

#contactContainer textarea	{
	width: 100%;
	height: 300px;
	padding: 5px 10px;
	resize: vertical;
}

#submitBtn{
	width: 100%;
	height: 60px;
	background-color: #00DD9A;
	border-radius: 5px;
	color: white;
	border: none;
	font-size: 3vh;
	cursor: pointer;
	transition-duration: 0.2s;
}
#submitBtn:hover	{
	background-color: #abd7b5;
}
#submitBtn:active	{
	background-color: #78a593;
}

form input	{
	height: 60%;
	position: relative;
	bottom: 0;
}

input, label	{
	display: block;
}

hr	{width: 100%; border: 2px solid white; background-color: white; margin: 50px;}

#tableWrapper	{
	position: relative;
	width: 80%;
}

#submitted	{
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 48px;
	border-radius: 10px;
	width: 100%;
	height: 0;
	opacity: 0;
	position: absolute;
	background-color: #3865a6;
	z-index: 5;
	transition-duration: 1s;
}



#fb	{
	display: block;
	padding: 20px;
	color: white;
	width: 250px;
	height: 250px;
	transition-duration: 0.2s;
	border-radius: 20px;
}
#fb:hover	{
	background-color: #ffffffbb;
}
#fb a	{
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("../Images/fbLogo.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
