.loadingscreen{
    height:100%;
    width:100%;
    position:absolute;
    z-index:1;
    background:#2a2724;
    text-align:center;
}

.loadingscreen.false{
    z-index: -1;
}

.loader {
    border: 16px solid #ff0953;
    border-bottom: 16px solid #2a2724;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    display:inline-block;
    margin-top:calc(50vh - 25px);
}

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