#loader {
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 9999;
}
#loader > div {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    justify-content: center;
    align-items: center;
}
#loader img {
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    padding: 4px;
    animation: zoom 1.5s linear infinite both;
    transform: scale(1);
}
@keyframes zoom {
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}