@charset "utf-8";

/* 
    CA1 Website: Flowers on Cupcakes
    Name:       Tan Ying Ling
    Student ID: 1922686
    Filename:   contact.css 
*/

/* Media Styling */
section > figure > img {
    display: block;
    width: 100%;
}

/* Articles Styling */
article#leftColumn > *, article#rightColumn > * {
    text-align: left;
}

article#leftColumn {
    display: block;
    clear: both;
    float: left;
    width: 65%;
}

article#rightColumn {
    display: block;
    float: left;
    width: 35%;
}

/*Clearfix*/

article#form::before {
    clear: both;
    content: "";
    display: table;
}

article#form {
    display:block;
    clear:both;
}

footer {
    clear: both;
}

/*Link Styles*/
a:link, a:visited, a:link, a:visited {
    color: pink; 
}

a:hover, a:active, a:hover, a:active {
    color: rgb(170, 48, 81);
}