/* CSS Document for Project 1
Author: Darrcelle Jackson
Course: ITWP 1050
File: styles.css */

/* sets background color for the html document */
:root {
    --white: #ffffff;
}
  
/* sets box size */
* {
    box-sizing: border-box;
}
  
/* sets body font */
body {
    font-family: Arial, Helvetica, sans-serif;
}
  
/* sets header background color, 
background image, height, 
background size, centers text, 
sets border radius and box-shadow */
.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;
}
  
/* sets text color and space */
h1 {
    --text-color:var(--white);
    padding: 15px;
}
  
/* aligns text sets space */
h2 {
    text-align: center;
    padding: 0;
}
  
/* sets image border, border radius, padding, height and width */
img {
    border: 3px double black;
    border-radius: 10px;
    padding: 5px;
    width: 100%;
    height: auto;
}
  
/* Style all elements with the id name "awards" and "info" */
#awards, #info {
    text-align: left;
    font-size: 85%;
}
  
/* Style all elements with the id name "retired" */
#retired {
    color: maroon;
    font-weight: bold;
}
  
/* Style all elements with the class name "highlights" */
.highlights {
    text-align: left;
    font-size: 85%;
}
  
/* Style all elements with the class name "headlines" */
.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 column */
.column.side {
    background-color: var(--white);
    width: 30%;
}
  
/* middle column */
.column.middle {
    width: 40%;
}
  
/* clear floats after 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%;
   }
}
  

/* sets the space, centers and sets the font size for the footer validation */  
.footer_validation {
    padding: 20px;
    text-align: center;
    font-size: 11px;
}