/*CSS Document used for the coffee web project 1 assignment
Author: Nicholas Thompson
Course: ITWP 1000
File: project1styles.css
information on using external CSS sheet is located in Chapter 3. information on media queries is located in Chapter 7. Information on tables and CSS formatting is located in Chapter 8
*/
body{
    margin-top: 1em;
    margin-bottom: auto;
    font-family: Arial, Helvetica;
}
h1 {
    text-align: left;
    font-size: 3em;
}

h2{
    text-align: left;
    font-size: 3em;
}

h3{
    text-align: left;
    font-size: 3em;
}

.responsive{
    max-width: 100%;
    height: auto;
    border: 1px solid #0e0e78;
    border-radius: 20px;
}

#validation{
    text-align: left;
}

footer{
    text-align: left;
}

@media only all and (max-width: 750px){

    img {
        display: none;
    }
}