@keyframes float {
    0% {transform: translatey(0px);}
    50% {transform: translatey(-20px);}
    100% {transform: translatey(0px);}
}

#page-loading-indicator {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#img-loading-indicator {
    width: 80px;
    height: 80px;
    transform: translatey(0px);
    animation: float 2s ease-in-out infinite;
    color: #24ae5f;
}
