// ============================================================================
// :: Home
// ============================================================================
/**
 * The styling applied to the <body> tag on the page containing the 'p-home'
 * class
 */

// ============================================================================
// :: Root
// ============================================================================
.p-home {
	color: white;
}

// ============================================================================
// :: Elements
// ============================================================================

.p-home__container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100vw;
	height: 100vh;
}

.p-home__react-map {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;

	width: 100%;
	height: 100%;

	background-color: blue;
}
