@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=DM+Serif+Text&display=swap');

html, body {
	height: 100%;
  font-family: 'Arial', 'Helvetica', serif;
}

/* == UTILITIES == */
.d-flex {
  display: flex;
}
.justify-content-between {
  justify-content: space-between;
}
.border-bottom {
  border-bottom: 1px solid #333;
}
.mr-1 {
  margin-right: 1em;
}
.mr-2 {
  margin-right: 2em;
}
.mb-1 {
  margin-bottom: 1em;
}
.p-2 {
  padding: 2em;
}
.py-2 {
  padding-left: 2em;
  padding-right: 2em;
}
.text-dark {
  color: #333;
}

/* == CUSTOMIZATIONS == */
body {
  color: #000;
}
.gradient-bg {
	background: linear-gradient(#FFF 50%, #FFD500);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
a {
  color: #111;
}
a:hover,
a:focus,
a:active {
  color: #000;
  text-decoration: none;
}
.content {
  height: 100%;
}
.logo-leaderboard {
  margin-top: 130px;
  margin-bottom: 50px;
  text-align: center;
}
.tagline-wrapper {
	margin-bottom: 50px;
}
.tagline-wrapper h1 {
  font-family: 'DM Serif Text', serif;
	font-size: 6em;
	padding-bottom: 20px;
}
.tagline {
  font-size: 2em;
}
.nav-splash {
	list-style: none;
	font-size: 1.25em;
}
.nav-splash li {
	border-bottom: 1px solid #888;
	padding: 3px;
}
.btn-container {
  margin-bottom: 25px;
}

/* == BUTTONS == */
.btn-splash-outline {
	border: 1px solid #111;
	background: transparent;
	color: #111;
  padding-left: 30px;
  padding-right: 30px;
}
.btn-splash-outline:hover,
.btn-splash-outline:active,
.btn-splash-outline:focus {
	border: 1px solid #111;
	background: #111;
	color: #ccc;
}
.btn-dark {
  background: #333;
}
.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus {
  background: #000;
  color: #fff;
}
.btn-lg {
  font-size: 2.5rem;
}