/* CSS stylesheet for Web Project #3 by Connor Helfer ITWP1000 Spring-Summer semester 2025 */

nav {
    text-align: right;
    justify-content: right;
}
#header {
    display: flex;
    flex-direction: column;
    flex: 2;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-color: #A67B5B;
    color: lemonchiffon;
}
h2.index {
    color: #A67B5B;
}
h2.gallery {
    color:#A67B5B;
}
#body {
    display: flex;
    flex-direction: column;
    flex: 8;
    background-color: #FDD9B5;
    font-size: 1.25em;
}
#footer {
    display: flex;
    flex-direction: column;
    flex: 2;
    margin-top: auto;
    justify-content: center;
    background-color: blanchedalmond;
}
/*footer text only*/
#text {
    text-align: center;
    color: #A67B5B;
}
main {
    justify-content: flex-start;
}
/*Gallery page*/
img {
    display: flex;
    gap: 10px;
    float: left;
}