/* File Name: styles.css
Author: Jesse Pence
Course: ITWP 1050 O0851 2026WI
Stylesheet to be used for completing Project 1 */

/* This is the global variable */
:root {
    --white: #FFFFFF
}

/* Universal Selector */
* {
    box-sizing: border-box;
}

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

/* Header Class Selector */
.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 #000000 inset;
}

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

/* h2 Element Selector */
h2 {
    text-align: center;
    padding: 0px;
}

/* Image Element Selector */
img {
    border: 3px double #000000;
    border-radius: 10px;
    padding: 5px;
    width: 100%;
    height: auto;
}

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

/* Retired ID Selector */
#retired {
    color: #800000;
    font-weight: bold;
}

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

/* Headlines Class Selector */
.headlines {
    font-size: 85%;
    font-weight: bold;
    text-align: center;
}

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

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

/* footer_validation class selector */
.footer_validation {
    padding: 20px;
    text-align: center;
    font-size: 11px;
}