body {
    margin: 0;
    overflow: hidden;
    user-select: none;
}

#start-prompt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: rgb(124, 124, 124);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    cursor: pointer;
    z-index: 100;
    text-align: center;
}

#start-prompt .text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
}
#start-prompt small {
    font-size: 0.5em;
    opacity: 0.8;
}

#info {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: white;
    z-index: 100;
    display:block;
}

.footnote{
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(109, 109, 109);
    font-size: 13px;
    font-family: sans-serif;
    z-index: 10;
    user-select: none;
    text-align: center;
}

.footnote p {
    margin: .2rem;
}

.slider {
    width: 300px;
}

/* Loading Indicator */
#loading-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #7c7c7c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    z-index: 200;
    font-family: sans-serif;
}

/* Spinner Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #7c7c7c;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-text {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #7c7c7c;
    text-align: center;
}