#loading-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background.jpg') no-repeat center center;
    background-size: cover;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}


#mrfartgif {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%; 
}

#mrfartgif img {
    max-width: 40%;
    height: auto;
}


#loading {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    width: 300px;
    height: 22px;
    background-color: black;
    border: 5px solid rgb(62, 82, 6);
    border-radius: 10px;
}

.box {
    width: 20px;
    height: 20px;
    background-color: #4caf50;
    opacity: 0;
    animation: fadeIn 0.4s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
