/* VMHR Home Page Custom CSS*/

:root {
	--body-bg: oklch(0.4071 0.0592 144);
	--darker-bg: oklch(0.3516 0.0592 144);
	--darkest-bg: oklch(0.3012 0.0592 144);
}

header, footer {
	background-color: var(--darkest-bg);
}
	
.vmhr-wrapper {
	background-color: var(--body-bg);
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 1rem;
}

.vmhr-logo-head {
	flex: 0 0 100%;
	text-align: center;
}

.vmhr-logo {
	max-width: 20rem;
	margin: 1rem auto;
	aspect-ratio: 4/1;
}

.vmhr-content {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
}

.vmhr-content > article {
        scroll-margin-top: 20px;
        padding: 1rem;
	margin: 1rem;
	flex: 1 1 100%;
	min-width: 36ch;
	max-width: 80ch;
	font-size: 1rem;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: var(--darker-bg);
}

.vmhr-content article p,
.vmhr-content article li {
	font-size: .8rem;
}

.vmhr-content > article h2 {
	font-size: 1.2rem;
	font-weight: 800;
}
