@import url('https://fonts.googleapis.com/css2?family=Loved+by+the+King&display=swap');

body { 
    
}
.container { 

    width: 100%; 
    height: 100%; 
    margin: auto;
}

.coloms { 
display: grid;

justify-items: center;
 grid-template-columns: 25% 25% 25% 25% ;
 width: 100%; 
 height: 100%;
 

}


.end { 

    grid-row-end: span 3;
    background-color: blue;
}


.animate-love { 
    animation-name: anim;
    animation-duration: 2.6s;
    width:70px;
    height: 65px;
    animation-iteration-count: 300;
    animation-delay: 2;
}


@keyframes anim {   

    from { width: 70px; height: 65px;}
    to{width: 75px; height: 70px;}
    
}

.love-y { 
    font-family: 'Loved by the King', cursive;
    font-size: larger;
    text-align: center;
    

    
}
 .img-1 { 
    display: block;
    margin-left: auto;
    margin-right: auto;


    
}