@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,600&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	line-height: 20px;
}

html, body {
	height: 100%;
	width: 100%;
	color: #fff;
	font-family: 'Poppins', 'Arial', sans-serif !important;
	font-size: 12px;
	min-width: 320px;
	min-height: 520px;
}

h1, h2, h3, h4 {
	display: block;
	font-size: 20px;
	line-height: 22px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

p {
	color: rgba(255, 255, 255, 0.7);
}

.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 100%;
	width: 100%;
	padding: 20px;
}

.border {
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.full {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

@media (min-width: 480px) {
	h1, h2, h3, h4 {
		font-size: 30px;
		line-height: 30px;
	}

	p {
		font-size: 14px;
	}
}

@media (min-width: 768px) {
	h1, h2, h3, h4 {
		font-size: 40px;
		line-height: 36px;
	}
}