@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.no-scroll {
    overflow: hidden;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loading-image {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 1s ease-in-out infinite;
}

#loading-bar {
    width: 200px;
    height: 10px;
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

#loading-progress {
    width: 0;
    height: 100%;
    background-color: pink;
    transition: width 0.5s ease-in-out;
}