#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: 1000;
}

.title-spinner-container {
    display: flex;
    align-items: center;
}

.loading-title {
    font-size: 38px;
		  font-weight: bold;
  		color: white;
    margin-right: 10px;
}

.spinner {
    width: 15px;
    height: 15px;
    border: 2px solid white;
    border-top: 2px solid gray;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 15px;
}

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

.loading-description {
    font-size: 16px;
    color: #D9D9E3;
}

#loading-complete {
    color: white;
    margin-right: 15px;
}