@charset "utf-8";

/* 
    CA1 Website: Flowers on Cupcakes
    Name:       Tan Ying Ling
    Student ID: 1922686
    Filename:   cupcakes.css 
*/

/*Figure Styles*/
figure {
    display: block;
    width: 25%;
    float: left;
    padding: 5px;
}

figcaption {
    background-color: rgb(255, 238, 244);
    height: 4.5rem;
    text-align: center;
}

figure img {
    display: block;
    max-height: 150px;
    width: 100%;
}

figure:nth-of-type(4n+1) {
    clear: both;
    padding-left: 0;
}

figure:nth-of-type(4n+4) {
    clear: right;
    padding-right: 0;
}

/*Clearfix */
article#cupcakes::after {
    clear: both;
    content: "";
    display: table;
}
