/*
File Name: styles.css
Author: Son Doan
Course: ITWP1050
Assignment: Project 1 - External Style Sheet
*/

:root {
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

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

.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 29px black;
}

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

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

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

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

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

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

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

.column.middle {
    width: 40%;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive */
@media (max-width: 600px) {
    .column,
    .column.middle {
        width: 100%;
    }
}

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