@media all {
	
	@font-face {
	  font-family: 'Font1';
	  font-style: normal;
	  font-weight: 400;
	  src: url('../src/fonts/font1.woff2') format('woff2'),
		   url('../src/fonts/font1.woff') format('woff');
	}
	
	* {
		padding: 0;
		margin: 0;
	}
	
	html, body {
		width: 100%;
		height: 100%;
	}
	
	html {
		overflow-x: hidden;
		overflow-y: scroll;
	}
	
	div#DIV_Wrapper {
		width: 100%;
		min-height: 100vh;
		color: white;
		background-color: black;
		background-image: url("../src/pic/background.jpg");
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		background-attachment: fixed;
		font-family: "Font1";
	}
	
}