@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);

:root {
	--light-blue: #5465ff;
	--med-blue: #0651aa;
	--dark-blue: #000050;
	--light-gray: #f0f0f0;
	--gray: #9e9e9e;
	--box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
	--box-shadow-hover: 0 2px 8px rgba(0, 0, 0, 0.35), 0 4px 8px rgba(0, 0, 0, 0.35);
}

html, body {
	height: 100%;
	font-size: 16px;
}

body {
	color:var(--dark-blue);
	text-align:center;
	background-color: var(--light-gray);
	background: var(--light-gray) url('images/wppmedia-bg-bubbles-btm-rt.png') fixed bottom right no-repeat;
	font-family: 'Open Sans', sans-serif;

}

body a {
	text-decoration: none;
	color: var(--light-blue);
}

body a:hover {
	text-decoration: underline;
	color: var(--med-blue);
}

.grid-wrapper {
	display: grid;
	justify-content: center;
	align-items: center;
	min-height: calc(100vh - 5rem);
	/* padding: 20px; */
	height: calc(100vh - 1rem);
}
.grid-container {
	display: grid;
	grid-template-columns: 1fr 1fr; 
	/* grid-template-rows: auto 1fr;  */
	grid-template-rows: 1fr auto auto 20px;
	gap: 20px; 
}
.top {
	grid-column: 1 / -1;
	text-align: center;
	align-self: end;
}

.left {
	padding: .5rem;
	transition: all .2s ease-in-out;
	width:600px;
}
.right {
	padding:.5rem;
	transition: all .2s ease-in-out;
	width:600px;
}
.left:hover, .right:hover {
	transform: scale(0.95);
}
.bottom {
	grid-column: 1 / -1;
	text-align: center;
	/* align-self: start; */
}
h1 {
	font-size:1.6rem;
	margin:.2rem .25rem .25rem;
}
h2 {
	font-size: 1.3rem;
	margin-bottom: .25rem;
}
p {
	line-height: 1.3rem;
	margin:.5rem 0 1rem;
}
.button {
	background-color: var(--light-blue);
	color: white !important;
	font-weight:bold;
	padding: .5rem 1.2rem;
	transition: all .3s;
	border-radius: 1.5rem !important;
	box-shadow: var(--box-shadow);
}
.button:hover {
	background: var(--dark-blue);
	color:#fff;
	text-decoration:none;
	box-shadow: var(--box-shadow-hover);
}
.button:active {
	background: var(--dark-blue);
	filter: brightness(80%) !important;
	text-decoration: none;
}

.content-box {
	color:var(--dark-blue);
	padding: 1rem;
	border: 1px solid rgba(0,0,0,.125);
	border-radius:8px;
	background-color: var(--light-gray);
}
.content-box:hover {
	box-shadow: var(--box-shadow);
}
footer {
	font-size:.85rem;
	align-self: end;
}


@media (max-width: 967px) {
	.left {
		width:300px;
		padding:20px 10px 20px 20px;
		min-height:380px;
	}
	.left:hover {
		transform:none;
	}
	.right {
		width:300px;
		padding:20px 10px 20px 20px;
		min-height:380px;
	}
	.right:hover {
		transform:none;
	}
	.centered-container {
		width: 300px;
		position: absolute;
		top:10%;
		left: 50%;
		margin-left: -150px
	}
}

/* 
@media (max-width: 967px) and (max-height: 720px) {
	.right {
		padding-top:140px;
	}
} */