.welcome{
	height: 400px;
	width: 100%;
	background-image: url(images/tcmlogo.png);
	background-size: 40%;
	background-repeat: no-repeat;
	background-position-x: 50%;
	background-position-y: 50%;
	align-items: center;
	justify-content: center;
	display: flex;
	font-size: 35px;
	background-color: white;
	color: black;
}

.intro{
	height: auto;
	padding: 10px;
	margin: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: justify;
	background-color: black;
	color: white;
}
.intro p{
	width: 65%;
	font-size: 25px;
}

@media (max-width: 720px){
	.welcome{
		height: 200px;
		font-size: 15px;
	}
	.welcome h2{
		width: 100%;
		white-space: nowrap;
		position: relative;
		left: 25px;
	}

	.intro{
		height: auto;
		padding: 8px;
	}

	.intro p{
		width: 90%;
		font-size: 18px;
		text-align: left;
	}
}