﻿html, body {
    height: 100%;
    margin: 0;
}

/* Loading screen overlay */
#loading-screen {
    position: fixed;
    top: -5rem;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Ensure it stays on top of everything else */
}

.loading-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
    border: 5px solid transparent;
    border-top: 5px solid #ff0000; /* Red color */
    border-right: 5px solid #0000ff; /* Blue color */
    border-bottom: 5px solid transparent;
    border-left: 5px solid transparent;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

#loading-screen img {
    width: 150px; /* Adjust the size as necessary */
    height: auto;
}

#loading-screen p {
    margin-top: 1rem;
    font-size: 1.2rem; /* Increase font size */
    color: #040101; /* Ensure text is visible on black background */
}
/* Main content hidden initially */
#content {
    display: none;
}


/* Customize the spinner size and color */
.spinner-border {
    width: 4rem; /* Increase the spinner size */
    height: 4rem; /* Increase the spinner size */
    border-width: 0.25rem; /* Adjust border thickness */
    border-top-color: #ff0000; /* Red top */
    border-right-color: #0000ff; /* Blue right */
    border-bottom-color: transparent;
    border-left-color: transparent;
}

/* Add some spacing between spinner and text */
.text-center p {
    margin-top: 1rem;
    font-size: 1.2rem; /* Increase font size */
    color: #ffffff; /* Ensure text is visible on black background */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Main content hidden initially */
#content {
    display: none;
    opacity: 0;
}

/* Add animation for fade-in effect when showing the content */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#content {
    animation: fadeIn 100s ease-in;
}
