body {
    margin: 0;
    padding: 0;
    background-color: #FFB5B5;
    font-size: 12px;
    overflow: auto
}

#mainDiv {
    width: 100%;
    height: 100%
}



#beatHeart{
    position: absolute;
    width: 500px;
    height: 500px;
    top: 120px;
    left: 100px;
    z-index: -1;
}
.hrt{
    position: absolute;
    width: 350px;
    height: 350px;
    background-color: #d5093c;
    box-shadow: 0 0 70px #d5093c;
    animation: sport 1s infinite;
}
.lef{
    border-radius: 175px;
    top: 0px;
    left: 0px;
}
.rig{
    border-radius: 175px;
    top: 0px;
    left: 247px;
}
.cen{
    transform: rotate(45deg);
    top: 122px;
    left: 124px;
}
@keyframes sport {
    0%{transform: scale(1) rotate(45deg);}
    50%{transform: scale(1.2) rotate(45deg);}
    100%{transform: scale(1) rotate(45deg);}
}



#codeAndGardenHeart {
    position: absolute;
    top: 100px;
    left: 280px;
    z-index: 1;
}

#gardenHeart {
    float: left;
    width: 670px;
    height: 625px
}

#garden {
    width: 100%;
    height: 100%
}

#elapseClock {
    text-align: right;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px
}

#words {
    font-family: "sans-serif";
    width: 500px;
    font-size: 24px;
    color: #666
}

#messages {
    display: none
}

#elapseClock .digit {
    font-family: "digit";
    font-size: 36px
}

#loveu {
    padding: 5px;
    font-size: 22px;
    margin-top: 80px;
    margin-right: 120px;
    text-align: right;
    display: none
}

#loveu .signature {
    margin-top: 10px;
    font-size: 20px;
    font-style: italic
}

#clickSound {
    display: none
}

#code {
    float: left;
    width: 440px;
    height: 400px;
    color: #333;
    font-family: "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", "sans-serif";
    font-size: 12px
}

#code .string {
    color: #2a36ff
}

#code .keyword {
    color: #7f0055;
    font-weight: bold
}

#code .placeholder {
    margin-left: 15px
}

#code .space {
    margin-left: 7px
}

#code .comments {
    color: #3f7f5f
}

#copyright {
    margin-top: 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
}