.obrigado{
	display: flex;
	flex-direction: column;
	width: 600px;
	min-height: 410px;
	height: calc(100vh - 337px);
	margin: 0 auto;
	justify-content: center;
	text-align: center;
	align-items: center;
	padding-top: 100px;
	gap: 15px;
}
.obrigado h2{
	color: #202e4e;
	font-size: 42px;
	font-weight: 600;
}
.obrigado p{
	font-size: 18px;
}
.obrigado a{
	font-size: 18px;
	color: #202e4e;
	font-weight: 600;
	transition: ease .2s;
}
.obrigado a:hover{
	color: #89bc4f;
	text-decoration: none;
	transition: ease .2s;
}
.side_box{
	display: none;
}

@media screen and (max-width: 600px) {
	.obrigado{
		width: 90%;
		margin: 0 auto;
	}
}