@-ms-viewport{
  width: device-width;
}

:root *, :root *::before, :root *::after {
	box-sizing: border-box;
}

html {
	height: 100%;
	margin: 0;
	padding: 0;
	padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 62.5%;
	font-weight: 300;
	color: hsla(0,80%,0%,1.0);
	text-align: center;
	background: hsla(41,86%,49%,1.0);
	background: hsla(48,100%,52%,1.0);
	
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	text-size-adjust: none;
	
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html * {
	margin: 0;
	padding: 0;
}

body {
	min-height: 100%;
	overflow-x: hidden;
	
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* ---------------- */

header {
	width: 100%;
	padding: 32px 64px;
	text-align: left;
}

.logo {
	height: 32px;
}

/* ---------------- */

section {
	max-width: 720px;
	margin: 0 auto;
	
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

h1 {
	max-width: 100%;
	margin: 0 auto;
}
h1 img {
	width: 100%;
	height: auto;
}

p {
	margin: 32px 0 0 0;
	font-size: 3.2rem;
	font-weight: 400;
	line-height: 1.4;
/*	word-spacing: -0.03264em;*/
}



/* ---------------- */

footer {
	width: calc(100% - 128px);
	margin: 0 auto;
	padding: 24px 0;
	font-size: 1.3rem;
	font-weight: 400;
	color: hsla(0,100%,0%,0.64);
	line-height: 1em;
	text-align: left;
	
	/*background: url("/_img/hr.svg") left top repeat-x;*/
	
	display: inline-flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

footer img.icon {
	height: 24px;
}

/* ---------------- */

@media only screen and (max-width: 1023px) {
	header {
		padding: 32px;
	}
	section {
		max-width: 672px;
	}
	p {
		word-spacing: -0.03264em;
	}
	footer {
		width: calc(100% - 64px);
	}
}

@media only screen and (max-width: 896px) {
	header {
		padding: 32px;
	}
	.logo {
		height: 24px;
	}
	section {
		max-width: calc(100% - 64px);
	}
	p {
		margin: 16px 0 0 0;
		font-size: 2.4rem;
		word-spacing: -0.03264em;
	}
	footer {
		width: calc(100% - 64px);
		padding: 12px 0;
	}
}

@media only screen and (max-width: 480px) {
	section {
		max-width: calc(100% - 64px);
	}
	p {
		margin: 16px 0 0 0;
		font-size: 2.4rem;
		word-spacing: -0.03264em;
	}
	footer .copyright {
		display: none;
	}
}

@media only screen and (max-width: 375px) {
	header {
		padding: 16px;
	}
	.logo {
		height: 24px;
	}
	section {
		max-width: calc(100% - 48px);
	}
	p {
		margin: 16px 0 0 0;
		font-size: 2.1rem;
		word-spacing: -0.03264em;
	}
	footer {
		width: calc(100% - 32px);
		padding: 12px 0;
	}
}