/*
Theme Name:  Vue.wordpress (Customed : Mamikos Promo)
Author:      Brandon Shiluk
Author URI:  https://github.com/bucky355
Description: Takes a hybrid approach, using Wordpress to manage and serve initial content. Vue.js takes over all future in-site navigation effectively transforming the site into a SPA. 
Version:     1.0.0
Text Domain: vue-wordpress
*/

/* Base Styles
------------------------------------- */

@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

body {
	margin: 0;
	font-size: 1.5em;
	line-height: 1.6;
	font-weight: 400;
	font-family: 'Lato', sans-serif !important;
	color: #444;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

main {
	min-height: 100vh;
	overflow: hidden;
}

@media (max-width: 767px) {
	main {
		min-height: 65vh;
	}
}

.container {
	width: 100%;
	max-width: 120rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.6rem;
	padding-right: 1.6rem;
	box-sizing: border-box;
}

h1 {
	font-size: 3.2rem;
}

h2 {
	font-size: 2.4rem;
}

h3 {
	font-size: 2rem;
}

.loading {
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #fff;
}
