@charset "utf-8";

/* gallery-styles.css for Lab 10, index.html in C6P2 Web Development Internship - Brittany Thompson, December 1, 2025 */

main {
    display: flex;
    flex-direction: column;
}

section {
    margin: 2%;
}

h3 {
    text-align: center;
    font-family: "Luxurious Script";
    font-size: 320%;
    border-top: 2px solid #4d4d4d;
    padding: 2%;
}

h4 {
    margin: 2%;
    font-family: "Luxurious Script";
    font-size: 220%;
    text-align: center;
}

img {
    border: 5px outset gold;
}

.grandmagallery {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;

}

.grandmagallery img {
    width: 45%;
    margin: 2%;
}

.momgallery {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.momgallery img {
    width: 45%;
    margin: 2%;
}

.briagallery {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.briagallery img {
    width: 45%;
    margin: 2%;
}

article {
    background: linear-gradient(to bottom, #4d4d4d, #000000);
}

div {
    padding-bottom: 5%;
}