/*Project 1 Style sheet - Ashley Agacinski - ITWP 1050*/ 
/*global variable*/
:root {
    --white: #FFFFFF;
}
/* Universal style */
* {
    box-sizing: border-box;
}
/*body style*/
body {
    font-family: Arial, Helvetica, sans-serif;
}
/*header style*/
header {
    /*calling the white global variable*/
    background-color: var(--white);
    /*linking img and style*/
    background-image: url("images/baseball_headerimage.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
    height: 250px;
    border-radius: 10px;
    /* offset-x - offset-y - blur-radius - color*/ 
    box-shadow: 0px 0px 25px black;
}
/*1 style*/
h1 {
    /*calling the white global variable*/
    color: var(--white);
    padding: 15px;
}
/*h2 style*/
h2 {
    text-align: center;
    padding: 0px;
}
/*img style*/
img {
    border: 3px double black;
    border-radius: 10px;
    padding: 5px;
    width: 100%;
    height: auto;
}
/*award and info ID styles*/
#awards, #info {
    text-align: left;
    font-size: 85%;
}
/*retired ID styles*/
#retired {
    color: maroon;
    font-weight: bold;
}
/*highlights class style*/
.highlights {
    text-align: left;
    font-size: 85%;
}
/*headlines class style*/
.headlines {
    font-size: 85%;
    font-weight: bold;
    text-align: center;
}
/*Create three unequal collumns that floats next to each other*/
.column {
    float: left;
    padding-top: 10px;
    padding-right: 10px;
    width: 30%;
}
/*left and right column*/
.column.side {
    width: 30%;
    /*calling the white global variable*/
    background-color: var(--white);
}
/*middle column*/
.column.middle {
    width: 40%;
}
/*clear floats after the columns*/
.row::after {
    content: "";
    display: table;
    clear: both;
}
/*responsive layout - make 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 {
    padding: 20px;
    text-align: center;
    font-size: 11px;
}