* {
    margin: 0;
    padding: 0;
        /*background-color: rgba(0, 0, 0, 0.5);*/
    /*box-sizing: border-box;*/
}

body, html {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

}


.content-blocker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    cursor: wait;
}
