/*
CSS Class (ITWP 1050)
Module 3
Project 1

Author: Marcus Shutran 0612328
Date:   04-06-2026

Filename: project1.htm CSS Page
*/

/*Creating the Global Variable: white*/
:root {
    --white: #ffffff    
}

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

/*Body Selector Rule*/

body {
    font-family: Arial, Helvetica, sans-serif;
}

/*Creating the Header Class*/

.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;
}

/*Creating the h1 and h2 Selectors*/

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

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

/*Creating the Imge element Selector*/

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

/*Creating the Awards, Info, and Retired IDs*/

#awards {
    text-align: left;
    font-size: 85%;
}

#info {
    text-align: left;
    font-size: 85%;
}

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

/* Creating the Highlights and Headlines classes */

.highlights {
    text-align: left;
    font-size: 85%;
}

.headlines {
    font-size: 85%;
    font-weight: bold;
    text-align: center;
}
/* Create three equal columns that float 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);
}

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

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

/* Responsive layout - makes the threee columns stack on topof each other instead of next to each other */

@media (max-width: 600px) {
    column.side, .column.middle {
        width: 100%
    }
}

/* Class Selector for the footer */

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