@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#logo-div{
    display: flex;
    justify-content: center;
    align-items: center;
    
}


#LOGO {
    background-image: url('../images/logo.png'); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 80%;
    width: 100%;
    position: relative;
    overflow: hidden;

    animation: pulse 2s infinite ease-in-out;
}
