/*
Short of version control:
Updated by Jasper on 2/5/2023
Used for WBC Marcus 2/14/2023
Used ofr LIV Golf Marcus 2/19/2023 
MLB 9/13/2023
*/

:root {
	--primary-color: #cfe2f3;
	--secondary-color: #0b5394;
	font-family: 'Open Sans', sans-serif;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}



/*
**************************
Header
**************************
*/
.app-header {
	background: var(--primary-color);
	/* box-shadow: 3px 3px 10px #888888; Drop Shadow */
}
.app-header .container {
	width: 95%;
	margin: 0 auto;
	overflow: none;
	padding: 5px;
}
.app-header .container {
	border-bottom: 10px solid var(--secondary-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.app-header .logo {
	width: 300px;
	margin-bottom: 0rem;
}


/*
**************************
Background
**************************
*/
#background {
	background-image: url('images/arena_wordcloudMLB.jpg');
	background-size: cover;
	position: fixed;
	z-index: -1;
	background-position: center;
	height: 100%;
	width: 100%;
}


/*
**************************
Icon Display
**************************
*/
.grid {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	justify-content: center;
}

.grid .item {
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 5px;
	width: clamp(500px, 13.4vw, 800px);
}

.grid .item img {
	width: 100%;
	height: auto;
	text-align: center;
	display: block;
	align-self: center;
}

.grid .item2 {
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 5px;
	width: clamp(150px, 13.4vw, 300px);
}

.grid .item2 img {
	width: 100%;
	height: auto;
	text-align: center;
	display: block;
	align-self: center;
}

.grid .item3 {
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 5px;
	width: clamp(100px, 13.4vw, 200px);
}

.grid .item3 img {
	width: 100%;
	height: auto;
	text-align: center;
	display: block;
	align-self: center;
}

.grid .item4 {
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 5px;
	width: clamp(500px, 13.4vw, 750px);
}

.grid .item4 img {
	width: 100%;
	height: auto;
	text-align: center;
	display: block;
	align-self: center;
}

/*
Allows us to prematurely end a row of icons.
This was first used to separate WBB and MBB icons from the rest
*/
.break {
	flex-basis: 100%;
	height: 0;
}

.grid .item h5 {
	font-family: "arial";
	font-size: clamp(12px, 1vw, 16px);
	height: 36px;

}

/*
**************************
Footer/Navigation bar section
**************************
*/
.app-footer {
	position: sticky;
	bottom: 0px;
	flex-shrink: 0;
	background: #014b32;
	color: #fff7f2;
	padding: 10px;
	font-size: 14px;
	margin-top: 10px;
	font-weight: bold;
}

.app-footer ul {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.app-footer ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.app-footer ul li i {
	font-size: 22px;
}
.app-footer ul li i {
	color: #fff7f2;
}

.app-footer ul li i:hover {
	color: #e6dcd2;
}
/* For sticky footer - grow to fill the space */
body {
	display: flex;
	flex-direction: column;
}
.content {
	flex-grow: 1;
}
body,html {
	height: 100%;
}
/*End sticky footer section*/
