@font-face {
    font-family: 'Roboto Flex';
    font-style: normal;
    font-weight: 100 1000;
    font-stretch: 100%;
    font-display: swap;
    src: url('../fonts/roboto-flex-latin-ext.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto Flex';
    font-style: normal;
    font-weight: 100 1000;
    font-stretch: 100%;
    font-display: swap;
    src: url('../fonts/roboto-flex-latin.woff2') format('woff2');
}
* {
	box-sizing: border-box;
}
body {
	background: #f4f4f4;
	font-family: 'Roboto Flex';
	margin: 0;
}
a {
	color: black
}
img {
	max-width: 100%;
	height: auto;
}
p {
	line-height: 1.5
}
h1 {
	margin-top: 0;
}
.wrapper {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 30px;
}
header {
	border-bottom: 2px solid #afafaf;
	padding: 40px 0;
	margin:0 0 40px 0
}
header img {
	max-width: 400px;
	width: 100%;
}

.grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.grid img {
	width: 100%;
}

@media(max-width:800px) {
	.grid {
		grid-template-columns: 1fr;
	}
}