/*==========================ELIM Full Gospel Church====================================*/

/* Author: Takura Nigel Kufakunesu (tkapps-dev)*/
/* Last edit: 24 June 2026 */
/*=====================================================================================*/

/*header border configuration*/
h1{
    border-style:solid;
    border-radius: 0.25cm;
    border-color: red;
    padding:10px;
}

/* pseudoclass to change the colour of the hyperlink while hovering*/
a:hover{
    color:tomato;
}

/*rotate the logo while the image is being pressed*/
#elim_logo:active{
    animation: logo_rotate;
    animation-duration: 5s;
}

@keyframes logo_rotate{
    100%{transform: rotateZ(360deg);}
}
