/* Project 1: Rachel Spelich, ITWP1050 Project 1 Style Sheet */

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

/* Universal Selector: Box Sizing with Border Box */
* {
    box-sizing: border-box;
}

/* Element Selector: Body Font Family*/
body {
    font-family: Arial, Helvetica, sans-serif;
}

/*Class Selector: Background color, border radius, box shadow, background image/size/position, text align and height*/
.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: 0px 0px 25px black inset;
}

/* Element Selector: h1, h2 and img */
h1 {
    color: var(--white);
    padding: 15px;
}

h2 {
    text-align: center;
    padding: 0px;
}

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

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

#retired {
    color: maroon;
    font-weight: bold;
}

/* Class Selector: Highlights and Headlines */
.highlights {
    text-align: left;
    font-size: 85%;
}

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

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

/* Left and Right columns */
.column.side {
    width: 30%;
    background-color: var(--white);
}

/* 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%;
}
}

/* Class Selector: Footer */
.footer_validation {
    padding: 20px;
    text-align: center;
    font-size: 11px;
}