/**
 * Styles the website's primary banner.
 *
 * @author christopher nostrand
 */

/* imports special font */
@import url("http://fonts.googleapis.com/css?family=Berkshire+Swash");

/* container of banner */
.banner {
    background: url("/img/banner/background.png");
    border-radius: 50px 50px 0 0;
    height: 150px;
    width: 100%;
}

/* left-hand side of banner */
.banner .left {
    float: left;
}
.banner img {
    height: 150px;
}
.banner h1, .banner h2 {
    margin: 0;
	text-align: left;
}
.banner h1 {
    color: #FD0E67;
    font-size: 1.75em;
}
.banner h2 {
    color: #FE5B35;
    font-size: 1.12em;
}

/* right-hand side of banner */
.banner .right {
    /* Display & Position */
    float: right;
    position: relative;
    right: 3em;
    top: 1.5em;
    /* Color */
    color: #FE7518;
    /* Content */
    font-family: 'Berkshire Swash', Helvetica, sans-serif;
    font-size: 2em;
    font-style: italic;
    text-align: center;
}
