@charset "utf-8";
/* CSS Document */
*, ::before, ::after { 
	box-sizing: border-box; 
  	margin: 0;
	padding: 0;
	outline : none;		
}
html {
	scroll-behavior: smooth;	
}
html, body {
	width: 100%;
	height: 100vh;
}
body {
    display: flex;
	flex-direction: column;
    flex-wrap: wrap;
	justify-content: center;
}
img {
	width: 500px;
	max-width: 90%;
	height: auto;
	margin: 0 auto;
}

