*, *:before, *:after {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box;
}

html,
body {
	width: 100%;
	min-height: 100vh;
}

body {
	font-family: 'Noto Sans', sans-serif;
	background-image: url(img/bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	color: #808080;
	font-size: 18px;
	line-height: 1.15em;
}

article {
	position: absolute;
	right: 26vw;
	top: 29vh;
	padding: 0 0 30px 0;
}

@media only screen and (max-width: 1240px) {
	article {
		top: 16vh;
		right: 18vw;
	}
}

@media only screen and (max-width: 1024px) {
	article {
		top: 14vh;
		right: 14vw;
	}
}

@media only screen and (max-width: 860px) {
	
	body {
		background-image: url(img/bg-small.jpg);
	}
	
	article {
		position: relative;
		top: 0;
		right: 0;
		left: 0;
		width: 100vw;
		padding: 50px;
		overflow: hidden;
	}
}

@media only screen and (max-width: 750px) {
	article {
		padding: 30px!important;
	}
	
	h1 {
		font-size: 18px!important;
	}

	h1 small {
		font-size: 18px!important;
	}
	
	ul li {
		font-size: 18px!important;
	}
	
	p {
		font-size: 18px!important;
	}
	
}

h1 {
	font-size: 18px;
	color: #ce1819;
	margin: 0;
	padding: 0;
}

h1 small {
	font-size: 18px;
	color: #808080;
}
	

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

ul li {
	font-size: 18px;
}

p {
	margin: 0;
	padding: 0;
	font-size: 18px;
}

p span {
  display: inline-block;
	color: #ce1819;
}

p span > span {
  display: inline-block;
  width: 22px;
}
	