@charset 'UTF-8';


/* BASICS */

*, *:before, *:after{
	box-sizing: border-box;
	
	scroll-behavior: smooth;
	
	border: none;
	outline: none;
	
	margin: 0;
	padding: 0;
	
	height: auto;
	width: auto;
}

html,
body {
	height: 100%;
	width: 100%;
}

ul, li {
	padding: 0;
	margin: 0;
	
	list-style: none;
}

img {
	width: 100%;
	height: auto;
}

button {
	background: none;
}

::placeholder {
	color: black;
}


/* WEBKIT */

::-webkit-scrollbar {
	display: none;
}


/* SECTION */

section {
	height: auto;
	width: 100%;
	
	position: relative;
	
	padding: 0 12px;
}


/* 404 */

#404 a {
	margin-top: 150px;
	
	border: 1px solid pink;
}


/* MOBILE */

@media screen and (min-width: 1200px) {
	section {
		height: auto;
		width: 1200px;
		
		margin: 0 auto;
	}
}