@import url('https://fonts.googleapis.com/css?family=Roboto:400,700,900');
:root {
    --bg-color: #0F0F10;
    --secondary-color: #FFFFFF;
  }
html {
	background-color: var(--bg-color);
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
	font-family: Roboto, sans-serif;
}
*::-webkit-scrollbar {
	display: none;
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
}
body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow-x: hidden;
}

a {
	color: white;
	font-size: 10px;
}

h1 {
	font-weight: bolder;
	color: var(--secondary-color);
	font-size: 2rem;
}

h2 {
	font-weight: normal;
	color: var(--secondary-color);
	font-size: 1.25rem;
}

body img {
    padding-right: 10px;
}

body {
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
}