@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@charset "utf-8";
content#mainContent
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

}

content#mainContent img
{
	order: 2;
	min-width: 250px;
	width: 50%;
	border-radius: 1%;
	margin: 10px 0 20px 0;
}
	
div#text
{
	order: 1;
	width: 75%;
	margin: 45px 0 10px 0;
	padding: 40px;
	text-align: center;
	font-size: 1.25rem;
	border: 6px solid #81cfd2;
	border-style: inset outset outset inset;
	border-radius: 20px;
	box-shadow: 0 0 20px #81cfd2;
	background-color: #4e4c4e;
	color: white;
}
	
div#text p
{
	margin: auto;
	justify-content: center;
	width: 100%;
}
	
div#text h1
{
	font-size: 1.75rem;
}
	
div#text a
{
	color: white;
}
	
div#text a:hover
{
	color: rgb(200, 200, 200);
}
@media only screen and (min-width: 800px) 
{
	content#mainContent
	{
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		margin: 20px 100px;
	}
	
	content#mainContent img
	{
		order: 1;
		min-width: 250px;
		width: 25%;
		border-radius: 1%;
	}
	
	div#text
	{
		order: 2;
		width: 50%;
		padding: 40px;
		margin-left: 100px;
		text-align: center;
		font-size: 1.25rem;
		border: 6px solid #81cfd2;
		border-style: inset outset outset inset;
		border-radius: 20px;
		box-shadow: 0 0 20px #81cfd2;
		background-color: #4e4c4e;
		color: white;
	}
	
	div#text p
	{
		margin: auto;
		justify-content: center;
		width: 75%;
	}
	
	div#text h1
	{
		font-size: 1.75rem;
	}
	
	div#text a
	{
		color: white;
	}
	
	div#text a:hover
	{
		color: rgb(200, 200, 200);
	}
}

@media only screen and (min-width: 1200px) 
{
	
}