/*

File: styles.css
Author: Safaa Sabir
Course: ITWP 1050
Assignment: Project 1

*/


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

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

/* Body Styling */

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 5px;
    padding: 20px;
}

/* Header Background image */
.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: 0 0 25px black inset;
}



/* h1 Styling */

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

/* 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 Selector */

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

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

/* Class Selectors */

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

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

/* Raw Layout using flexbox to create columns */

/* Row */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 10px;
}

/* Columns */
.column {
    float: left;
    padding-top: 10px;
    padding-right: 10px;
    width: 30%;
}

/* Side Columns */
.column.side {
    width: 30%;
}

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

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

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

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