.certificate {
	/*height: 500px;*/
	justify-content: center;
	
	margin: 150px auto 0;
	width: 75vw;
	/*min-width: 500px;*/
	max-width: 1000px;
	display: flex;
	/*flex-wrap: wrap;*/
	flex-direction: column;
	gap: 20px;
}
.certificate .part {
	background-color: #2a398f;
	color: #fff;
	padding: 20px;
	border-radius: 20px;
	box-sizing: border-box;
	box-shadow: inset 0 0 15px 0 rgba(0,0,0,0.5),
									0 0 10px 0 rgba(0,0,0,0.3);
}
.certificate .part .wrapper {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}
.certificate .part h1 {
	margin-bottom: 15px;
	text-align: center;
}
.certificate .part .columns {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 45%;
}
@media (max-width: 700px) {
	.certificate .part .columns {
		width: 100%;
	}
}
