*,
*:before,
*:after {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-box-sizing: inherit;
	   -moz-box-sizing: inherit;
			box-sizing: inherit;
}
html {
	background-color: #242424; /* for outside the body colour */
	color: #FFF;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
	overflow-y: scroll;
	font-family: 'Kanit', sans-serif;
}
body {
	min-height: 100vh;
	margin: 0 auto;
    position: relative;
    display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5%;
}

img { max-width: 100%; }
mark { background-color: transparent; color: inherit; }
a {
	cursor: pointer;
	text-decoration: none;
	color: #d89b6c;
}
a:hover {text-decoration: underline;}
h1 {
	font-weight: 400;
	margin-bottom: 20px;
}
p {
	font-size: 16px;
	line-height: 20px;
}

%safe_sides {
	padding-right: env(safe-area-inset-right) !important;
	padding-left: env(safe-area-inset-left) !important;
}
%safe_sides_margin {
	margin-right: env(safe-area-inset-right) !important;
	margin-left: env(safe-area-inset-left) !important;
}

.sr-only {
	border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.holding {
	max-width: 800px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.holding p {margin: 0 0 20px;}
.holding > p:last-of-type {margin-bottom: 0;}

.logo {
	height: 100px;
	width: auto;
	display: block;
}
hr {
	border: none;
	border-top: 1px solid rgba(255,255,255,.15);
	margin: 30px 0;
	display: block;
	width: 100%;
}
ul {
	margin: 0;
	list-style-type: none;
	margin-top: -15px;
}
li {
	font-size: 16px;
	line-height: 20px;
}