/* CSS Document used for Web Project 1
Author: Colten Germundson
Course: ITWP 1000
File: styles.css
*/
body {
    margin-left: 10em;
    margin-right: 10em;
    font-family: Arial, sans-serif;
    color: #ffffff;
    background-color: #2a1b3d;
}

h1 {
    text-align: center;
    font-size: 2.5em;
}

p, div {
    margin: 10px;
    padding: 20px;
    line-height: 1.5em;
    font-size: 1.1em
}

a {
    color: #e98074;
}

footer, nav {
    text-align: center;
}

.footerText {
    margin: 10px;
    padding: 5px;
    line-height: 1.5em;
}

/* Table formatting */
table {
    margin: auto;
    border: 5px solid #d8a19b;
    width: 100%;
    border-spacing: 0;
}

td {
    border-style: none;
    padding: 0.5em;
    width: auto;
}

/* Responsive image class */
.responsive {
    max-width: 100%;
    height: auto;
    border: 1px solid #51471a;
    border-radius: 10px;
}

.video {
    text-align: center;
}

/* ID */
#validation {
    text-align: center;
}

#attribution {
    font-size: 0.75em;
}

#notice {
    font-size: 1.5em;
    font-style: italic;
    font-weight: bold;
}

figure { 
    border: 1px solid #ffffff; 
    padding: 5px;
    margin: auto;
    max-width: 47%;
    text-align: center;
}
figcaption { 
    font-family: Arial, sans-serif;
    text-align:center;
}

/* Media query that hides the image when the screen size is @ 550 pixels or lower */
@media only all and (max-width: 550px) {
    img {
        display: none;
    }
}
