﻿.two-columns { display: flex; justify-content: flex-start; align-items: flex-start; gap: 100px; }
	.two-columns .column { }
		.two-columns .column:first-child { width: 400px; max-width: 100%; }
		.two-columns .column:last-child { flex: 2; }
		.two-columns .column h1 { margin: 30px 0 20px 0; }
		.two-columns .column img { max-width: 100%; }

@media screen and (max-width: 1000px) {
	.two-columns { display: block; }
		.two-columns .column { }
}
