body {
    background-color: #6fa3dd;
}

h1 {
    font-family: 'Fjalla One', sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: #fee044;
    font-size: 60px;
}

.bubble img {
    border: 0px solid #ff0000;
    margin-left: auto;
    margin-right: auto;
    display: block;
    left: 70%;
    position: absolute;
    margin-top: 90px;
    width: 130px;
    cursor: pointer;
}

.bubble #randomQuote {
    border: 0px solid #ff0000;
    margin-left: auto;
    margin-right: auto;
    display: block;
    left: 73%;
    position: absolute;
    margin-top: 200px;
    width: 130px;
    cursor: pointer;
    font-size: 17px;
}

.bubble {
    font-family: 'Indie Flower', cursive;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    font-size: 40px;
    position: relative;
    max-width: 950px;
    padding: 25px;
    background: #FFFFFF;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: #6799d1 solid 6px;
}

    .bubble:after {
        content: '';
        position: absolute;
        border-style: solid;
        border-width: 45px 14px 0;
        border-color: #FFFFFF transparent;
        display: block;
        width: 0;
        z-index: 1;
        margin-left: -14px;
        bottom: -45px;
        left: 76%;
    }

    .bubble:before {
        content: '';
        position: absolute;
        border-style: solid;
        border-width: 50px 19px 0;
        border-color: #6799d1 transparent;
        display: block;
        width: 0;
        z-index: 0;
        margin-left: -19px;
        bottom: -56px;
        left: 76%;
    }

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 600px) {
    h1 {
        font-family: 'Fjalla One', sans-serif;
        text-align: center;
        text-transform: uppercase;
        color: #fee044;
        font-size: 40px;
    }

    .bubble {
        font-family: 'Indie Flower', cursive;
        font-weight: bold;
        margin-left: auto;
        margin-right: auto;
        font-size: 20px;
        position: relative;
        max-width: 950px;
        padding: 25px;
        background: #FFFFFF;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        border: #6799d1 solid 6px;
    }
}
