/* CSS document used for homework 5
Author: Jesse Pence
Course: ITWP 1050
File: styles.css
*/
@media screen and (max-width: 800px) {
h1 {
    font-size: 3rem;
}

body {
    font-size: 1rem;
}
}

@media screen and (max-width: 600px) {
    body {
        background-color: cornflowerblue;
    }
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    text-align: center;
}

body {
    text-align: center;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    background: skyblue;
    padding: 0.25rem;
}

.item {
    background: lime;
    color: black;
    text-align: center;
    margin: 0.25rem;
    font-size: 2rem;
}

.wide {
    width: 300px;
}

#validation {
    text-align: center;
}