/* 
project 1 stylesheet
Madisen Caswell
ITWP 1050
*/

/* Global variable */
:root {
	--white: #ffffff;
}

/* Universial selector */
* {
	box-sizing: border-box;
}

/* Body Styling */
body {
	font-family: Arial, Helvetica, sans-serif;
}

/* Header styling */
.header {
	background-color: var(--white);
	background-image: url("images/baseball_headerimage.jpg");
	background-size: cover;
	background-position: center;
	text-align: center;
	height: 250px;
	border-radius: 10px;
	box-shadow: inset 0 0 25px black;
}

/* h1 styling */
h1 {
	color: var(--white);
	padding: 15px;
}

/* h2 styling */
h2 {
	text-align: center;
	padding: 0;
}

/* image styling */
img {
	border: 3px double black;
	border-radius: 10px;
	padding: 5px;
	width: 100%;
	height: auto;
}

/* ID selectors - awards and info */
#awards, #info {
	text-align: left;
	font-size: 85%;
}

/*ID selector - retired */
#retired {
	color: maroon;
	font-weight: bold;
}

/* highlights class selector */
.highlights {
	text-align: left;
	font-size: 85%;
}

/* headlines class selctor */
.headlines {
	font-size: 85%;
	font-weight: bold;
	text-align: center;
}

/* Create three unequal columns that floats next to each other - w3schools */
.column {
	float: left;
	padding-top: 10px;
	padding-right: 10px;
	width: 30%;
}

/* Left and right column */
.column.side {
	width: 30%;
	background-color: var(--white); /* uses the global white variable */
}

/* Middle column*/
.column.middle {
	width: 40%;
}

/* Clear floats after the columns*/
.row:after {
	content: "";
	display: table;
	clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
	.column.side, .column.middle {
		width: 100%;
	}
}

/* validation footer styling */
.footer_validation {
	padding: 20px;
	text-align: center;
	font-size: 11px;
}
	