html {
    box-sizing: border-box;
}

*,
:before,
:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    background-color: #e7e3f2;
    font-size: 12px;
    overflow: auto;
}

#mainDiv {
    width: 100%;
    height: 100%
}

#content {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: center;
    align-items: center;
    width:100%;
    height: auto;
}
#loveHeart {
    width: 650px;
    height: 625px;
    position: relative;
}

#garden {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

#elapseClock {
    text-align: right;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px
}

#words {
    font-family: 'Great Vibes', Helvetica, sans-serif;
    width: 500px;
    font-size: 2em;
    position: absolute;
    top: 195px;
    left: 70px;
    color: #000;
    text-shadow: 4px 4px 3px rgba(0,0,0,0.1);
}

#messages {
    display: none
}

#elapseClock .digit {
    font-family: "digit";
    font-size: 36px
}

#love-u {
    padding: 5px;
    font-size: 22px;
    margin-top: 80px;
    margin-right: 120px;
    text-align: right;
    display: none
}

#love-u .signature {
    margin-top: 10px;
    font-size: 20px;
    font-style: italic
}

#clickSound {
    display: none
}

#note {
    float: left;
    width: 440px;
    height: 400px;
    color: #333;
    font-family: 'Delius Swash Caps', Helvetica, Sans-serif;
    font-size: 1.3em;
    font-weight: 100;
    line-height: 20px;
    background-color: #F0F8FF ;
    padding:10px;
    padding-left:20px;
    margin-right: 30px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

#note:after {
    content: "";
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border: solid;
    border-width: 0 0 30px 30px;
    border-color: transparent transparent #e7e3f2 rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6), -2px 2px 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6), -2px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6), -2px 2px 2px rgba(0, 0, 0, 0.3);
    /* Firefox 3.0 damage limitation */
    display: block;
    width: 0;
}

#note .string {
    color: #2a36ff
}

#note .keyword {
    color: #7f0055;
    font-weight: bold
}

#note .placeholder {
    margin-left: 15px
}

#note .space {
    margin-left: 7px
}

#note .comments {
    color: #3f7f5f
}

#copyright {
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
    color: #666
}

#errorMsg {
    width: 100%;
    text-align: center;
    font-size: 24px;
    position: absolute;
    top: 100px;
    left: 0
}

#copyright a {
    color: #666
}

@media screen and (max-width: 767px) {
    #note {
        float:none;
        width: 94%;
        height: 420px;
        margin: 50px auto;
    }

    #loveHeart {
        width:100%;
        margin-top: 50px;
        margin-bottom: 50px;
        display: none;
    }

    #words {
        width: 100%;
        left: 0;
        top: 110px;
        font-size: 1.5em;
    }

    #elapseClock {
        text-align: center;
    }

    #messages {
        text-align: center;
    }

    #love-u {
        margin: 40px auto;
        text-align: center;
    }
}