          /*--   CUSTOM CSS BELOW   http://littlefoot.live/css/style.css   10-11-23 ♥ Jesus ♥   */    
html{
    background-image: url(20230511_204339.jpg);
    background-position: center;
    background-attachment:fixed;
    background-repeat: no-repeat;
    background-size: cover;
    margin:0;
    }

body{
    color: chartreuse;
    }

.date{
    padding: 50px 0 0;
    text-align: center;
    color: #00fdfd;
    font-family: 'Bad Script', cursive;
    }

.love{
    padding: 177px 0 0;
    text-align: center;
    font-size: 77px;
    font-weight: bolder;
    line-height: 1;
    color: #f00;
    font-family: 'Bad Script', cursive;
    text-shadow: 3px 3px 5px antiquewhite;
    }        

/* Animations */
.span-div{
    text-align: center;
    font-size: 200px;
    }

span{
    display: inline-block;
    animation-name: pulse_animation;
    animation-duration: 1.3s;    
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: pulse_animation;
    -webkit-animation-duration: 1.3s;    
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    margin: 0;
    color: red;
    }

@keyframes pulse_animation{
    0% { transform: scale(1); }
    30% { transform: scale(1); }
    40% { transform: scale(1.25); }
    50% { transform: scale(1); }
    60% { transform: scale(1); }
    70% { transform: scale(1.1); }
    80% { transform: scale(1); }
    100% { transform: scale(1); }
    }
@-webkit-keyframes pulse_animation{
    0% { -webkit-transform: scale(1); }
    30% { -webkit-transform: scale(1); }
    40% { -webkit-transform: scale(1.25); }
    50% { -webkit-transform: scale(1); }
    60% { -webkit-transform: scale(1); }
    70% { -webkit-transform: scale(1.1); }
    80% { -webkit-transform: scale(1); }
    100% { -webkit-transform: scale(1); }
    }
    
.smile-size{
    display: inline-block;
    animation-name: pulse_animation;
    animation-duration: 1.3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: pulse_animation;
    -webkit-animation-duration: 1.3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    margin: 0;
    color: #fff000;
    font-size: 20px;
    }        

