@import "bootstrap.min.css";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

body {
	background-color: #000;
	color: #fff;
	font-size: 16px;
	font-family: 'Roboto Condensed', sans-serif;
	line-height: 1.5;
}

a,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	display: inline-block;
}

.container {
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
	position: relative;
}

.background {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
}

.background.mobile {
	display: block;
}

.background.desktop {
	display: none;
}

@media (min-width: 576px) {
	.background.mobile {
		display: none;
	}
	
	.background.desktop {
		display: block;
	}
}