.form{
	width: 100vw;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.form-content{
	width: 80%;
	background-color: #F0F0F0;
	padding: 20px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.side-a{
	width: 50%;
	padding: 20px;
}
.topic{
	font-size: 21px;
	letter-spacing: 2px;
}
.title{
	font-size: 50px;
	line-height: 110%;
	margin: 30px 0;
	max-width: 50%;
}
.content{
	font-size: 19px;
	line-height: 140%;
}

@media only screen and (max-width: 1280px){
	.form-content{
		flex-direction: column;
		width: 90%;
	}
	.side-a{
		margin-bottom: 50px;
	}
	.side-a, .side-b{
		width: 100%;
	}
	.title{
		font-size: 40px;
		max-width: 100%;
	}
	.title, .topic, .content{
		text-align: center;
	}
}

@media only screen and (max-width: 800px){
	.form-content{
		width: 100%;
	}
	.title{
		font-size: 27px;
	}
	.topic{
		font-size: 19px;
	}
}