@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";
	color: rgb(85,85,85);
}

header, footer{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 16px 128px;
	background-color: #07000a;
}

header *, footer * {
	width: 64px;
}

header p {
	width:fit-content;
	color: #ffffff;
	font-weight: 700;
	font-size:40px;
	line-height: 64px;
}
footer p{
	width:fit-content;
	color: #ffffff;
	font-size:16px;
	line-height: 64px;
}
.header {
	margin: 0 auto;
	margin-top: 64px;
	max-width: 890px;
}

.header > h1 {
	color: rgb(17,17,17);
	font-size: 50px;
	line-height: 67px;
	margin-bottom: 24px;
	text-align: left;
}

.header p{
	font-size: 20px;
}

.header > div.bottom-box{
	padding: 40px 0;
	border-bottom: 1px solid #ccc;
}
.header > div.bottom-box p {
	font-weight: 700;
	font-size: 16px
}

.content {
	text-align: justify;
	padding-top: 64px !important;
	max-width: 648px;
	margin: 0 auto;
}

.content p {
	margin-bottom:48px;
	font-size: 20px;
}

.image{
	margin-bottom:48px;
}

.image img{
	min-width:100%;
	max-width:100%;
	width: 100%;
}

.image span{
	margin-top 16px;
	font-size: 12px;
}

@media only screen and (max-width: 768px) {
	header, footer{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		padding: 16px 5%;
		background-color: #07000a;
	}

	header *, footer * {
		width: 48px;
	}

	header p {
		font-size:24px;
	}
	
	.header {
		margin-top: 32px;
	}

	.header, .content {
		width: 100%;
		padding: 0 24px;
		max-width: 100%;
	}
	.header > h1 {
		font-size: 32px;
		line-height: 38px;
	}
}
