@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

body {
	height: 100vh;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container {
	max-width: 1100px;
	width: 100%;
	padding: 40px;
}

.top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.text {
	flex: 1;
}

	.text h1 {
		font-size: 150px;
		color: #142882;
		line-height: 0.75;
		margin-bottom: 20px;
		text-align: right;
		font-weight: 800;
	}

		.text h1 span {
			font-size: 80px;
			letter-spacing: 5px;
		}

.image {
	flex: 1;
	text-align: left;
}

	.image img {
		max-width: 200px;
		height: auto;
	}

.description {
	margin-top: 40px;
	text-align: right;
	font-size: 18px;
	color: #555;
}

@media (max-width: 768px) {
	.top {
		flex-direction: column;
		text-align: center;
	}

	.image {
		text-align: center;
	}

	.text h1 {
		margin-top: 400px;
		font-size: 80px;
	}
	.description{
		text-align: center;
	}
}
