* {
	box-sizing: border-box;
}

html {
	font-family: Ubuntu, sans-serif;
	min-height: 100vh;
	background-color: white;
	opacity: 1;
	transition: opacity 0.5s;
}

html.hidden {
	opacity: 0;
}

body {
	margin: 0;
}

html {
	-ms-overflow-style: none; /* IE */
	scrollbar-width: none; /* Gecko */
}
html::-webkit-scrollbar { 
	display: none; /* WebKit */
}
