/* =========================
   SAVE WALTER WHITE STYLE
   ========================= */

html, body {
    background: #1ba11a url(./img/tile.png) top left repeat;
    font-family: Comic Sans, Comic Sans MS, cursive;
    margin: 0;
    padding: 0;
}

/* MAIN CONTAINER */

#walter-container {
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    width: 965px;
}

#walter-container p {
    font-weight: bold;
    margin: 1em 50px;
    line-height: 1.2em;
    text-align: left;
}

#walter-container #donate-container {
    margin: 40px 0;
}

#walter-container #donations-so-far {
    background: #000;
    width: 840px;
    height: 185px;
    margin: 0 auto;
    padding: 8px;
}

#walter-container p.middle {
    text-align: center;
}

/* TITLES */

#walter-container h1 {
    color: #FFF;
    font-family: times, helvetic, sans-serif;
    font-size: 112px;
    margin: 0;
    padding-top: 12px;
}

#walter-container ul#second_row {
    margin: 42px 0;
}

#walter-container ul#second_row li {
    margin: 0px 18px;
}

#walter-container ul#second_row li img {
    vertical-align: top;
}

#walter-container h3 {
    font-size: 40px;
    font-weight: normal;
    margin: 0;
}

h3 {
    margin-top: -10px;
    margin-bottom: 20px;

    font-size: 42px;
    font-weight: normal;
}


div.ribbons {
    background: url(./img/bow_left.png) no-repeat 155px 70px;
}

/* COLORS */

.yellow {
    color: #fff54f;
}

.dark-yellow {
    color: #ffcc00;
}

.white {
    color: white;
}

/* TEXT SIZES */

.large-copy {
    font-size: 42px;
}

.medium-copy {
    font-size: 25px;
}

.small-copy {
    font-size: 21px;
}

/* ALIGNMENT */

.middle {
    text-align: center;
}

.justify {
    text-align: justify;
}

/* IMAGES */

ul li {
    display: inline;
}

ul {
    list-style-type: none;
    margin: 0;
}

li {
    display: inline-block;
}

img {
    border: none;
}

/* SECOND ROW */

#second_row {
    margin-bottom: 20px;
}


/* FOURTH ROW */

#walter-container ul#fourth_row li {
    margin: 40px 95px;
}


/* RIBBONS */

.ribbons {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* BANNER */

#banner-container img {
    border: none;
}

/* DONATE BUTTON */

#donate-container img:hover {
    transform: scale(1.05);
}

/* DONATION AREA */

#donations-so-far {
    margin-top: 30px;
}

/* LEGAL */

.legal {
    margin-top: 60px;
    text-align: center;
    font-size: 14px;
}

.legal a {
    margin: 0 10px;
}

/* COPYRIGHT */

.copyright {
    margin-top: 20px;
    margin-bottom: 30px;

    text-align: center;
    color: #888;

    font-size: 13px;
}

/* OLD SCHOOL EFFECT */

blink {
    animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

/* SELECTION */

::selection {
    background: yellow;
    color: black;
}