html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
}

body {
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	display: flex;
	flex-direction: column;
}

header {
	background: url('microsoft.png');
	background-size: contain;
	background-position: 0px center;
	background-repeat: no-repeat;
	height: 40px;
	margin: 48px;
	margin-left: 400px;
}

section {
	background: url('code.png');
	background-repeat: no-repeat;
	background-size: 150px;
	background-position: 100px;
	padding: 0 20px 0 400px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;

	h1 {
		font-size: 48px;
		font-weight: 500;
		margin: 0;
	}

	p {
		font-size: 20px;
		color: rgb(107, 114, 128);
	}

	a,
	button {
		background-color: rgb(0, 152, 255);
		border-radius: 8px;
		color: white;
		display: inline-block;
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
		padding: 8px 16px;
		text-decoration: none;
		border: none;
		cursor: pointer;
	}
}

footer {
	background: rgb(243, 244, 246);
	color: rgb(107, 114, 128);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;

	p {
		flex: 1;
	}
}


@media (max-width: 1000px) {
	header {
		margin-left: 0;
		width: 100%;
	}

	section {
		padding: 0px 20px;
		align-items: center;
		background-position: 50% 0;
	}
}