* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font: inherit;
	text-decoration: none;
	background: transparent;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: sans-serif;
	line-height: 1;

	/* text size fix on mobile */
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;

	/* text anti-aliasing fix */
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	cursor: pointer;
}

img,
svg {
	display: block;
	max-width: 100%;
}

ol,
ul,
li {
	list-style: none;
}

/* ////////////////////////////////// */

html,
body {
	min-height: 100%;
	height: 100%;
	overflow: hidden;
}

body {
	display: grid;
	place-content: center;
}

div#logo {
	width: 30vw;
}

@media (orientation: portrait) {
	div#logo {
		width: 70vw;
	}
}
