/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */

@import "partials/variables";

//Global
body{
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: 700;
	color: $black;
	font-size: 20px;
}

.blue {
	color: $blue;
}

// h1,h2,h3,h4,h5,h6 {
// 	font-family: 'Roboto', sans-serif;
// 	font-weight: 300;
// }

//Global header
.header {
	@import "partials/header";
}

//Global navbar
// .navbar {
// 	@import "partials/navbar";
// }

//Global footer
.footer {
	@import "partials/footer";
}

//Global subpage
// .main-sub {
// 	@import "partials/sub";
// }

//Home Page Specific
.main-home {
	@import "partials/home";
}

//Subpage Specific
//for the love of god rename this to something intelligent when you start working on a static site 
// .main-subpage_1 {
// 	@import "partials/subpage_1";
// }

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* Large devices (large desktops, 1200px) */
@media (min-width: 1200px) {}