/* File: styles.css */
/* Name: Raneen Algamal */
/* Course: ITWP 1050 */
/* Assignment: Project 1 */

/* global variable */
:root {
    --white: #ffffff;
}

/* universal selector */
* {
    box-sizing: border-box;
}

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

/* header class */
.header {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: inset 0 0 25px black;
}

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

/* h2 selector */
h2 {
    text-align: center;
    padding: 0;
}

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

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

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

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

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

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

/* left and right columns */
.column.side {
    width: 30%;
    background-color: var(--white);
}

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

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

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

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