html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0px;
}

body {
    background-color: black;
    overflow: hidden;
}

#root {
    width: 100%;
    height: 100%;
}

#container {
    position: relative;
    width: 100%;
    height: 100%;
}

#canvas {
    position: absolute;
    width: 100%;
    height: 100%;
}

#loading {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

#loading-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/loading-bg.jpg') no-repeat center /contain;
}

#progress-bar-empty {
    position: absolute;
    width: 60%;
    height: 2%;
    background: url('../images/loader-bg.png') no-repeat center /cover;
    left: 50%;
    bottom: 5%;
    transform: translate(-50%, 0%);
    border-radius: 20px;
}

#progress-bar-full {
    position: absolute;
    background-color: #f6d766c9;
    width: 0%;
    height: 60%;
    left: 0%;
    top: 50%;
    transform: translate(0%, -50%);
    border-radius: 20px;
}

#progress-description {
    position: absolute;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 2vw;
    color: white;
    width: 100%;
    text-align: center;
    bottom: 10%;
}

#warning {
    position: absolute;
    width: 30%;
    height: 20%;
    background: rgba(255, 165, 0, 0.9);
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 1.56vw;
    text-align: center;
    color: white;
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
    display: none;

}

#warning-text {
    width: 90%;
    height: 70%;
    margin: 0 auto;
    overflow: auto;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    vertical-align: middle;
}

#warning-button {
    width: 15%;
    height: 20%;
    background: linear-gradient(to bottom, rgba(51, 224, 51, 0.9), rgba(41, 194, 41, 0.9));
    border-radius: 5px;
    border: 2px solid rgb(214, 214, 60);
    cursor: pointer;
    font-size: 1vw;
    color: white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.2s;

}

#footer {
    display: none;
    position: absolute;
    width: 100%;
    height: 5%;
    bottom: 0;
}