@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body::-webkit-scrollbar {
	display: none;
}

body {
	background-color: #35363A;
	text-align: center;
	-ms-overflow-style: none;  
	scrollbar-width: none;  
}

.homepage {
	width: 100vw;
	height: 100vh;
	position: relative;
}

.about {
	padding: 80px 0;
	font-family: 'Open Sans', sans-serif;
	font-weight: bold;
	color: #fff;
}

img {
	position: absolute;
	width: 256px;
	height: 256px;
	top: 50%;
	left: 50%;
	margin-left: -128px;
	margin-top: -128px;
}