body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}


#label {
    position: absolute;
    left: 20;
    top: 0;
    user-select: none;
    color: #fff;
    font-family: sans-serif;
    padding: 2px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
}

input {
    position: absolute;
}
#prog {
    position: absolute;
    top : 1000px;
    width: 100%;
    background-color: white;
    z-index: 3;
}

#progBar {
    position: absolute;
    top : 1000px;
    width: 0%;
    height: 30px;
    background-color: #04aa6d;
    text-align: center;
    line-height: 30px;
    color: white;
    z-index: 3;
}
#progMessage {
    position: absolute;
    top : 970px;
    width: 100%;
    height: 30px;
    background-color: #f0f0f0;
    text-align: center;
    line-height: 30px;
    color : black;
    z-index: 3;
}

#gui {
    position: absolute;
    top: 0px;
    left: 15px;
}

#c {
    position: relative;
    width: 100%;
    /* let our container decide our size */
    height: 100%;
    display: block;
    z-index: 1;
}

#container {
    position: relative;
    /* makes this the origin of its children */
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#labels {
    position: absolute;
    left: 0;    
    top: 0;
    font-size:large;
    color: black;
    z-index: 3;
}

#labels>div {
    position: absolute;
    left: 0;
    top: 0;
    /* cursor: pointer;     change the cursor to a hand when over us */
    font-size: larger;
    font-family: serif;
    user-select: none;
    /* text-shadow:
        -1px -1px 0 #000,
        0 -1px 0 #000,
        1px -1px 0 #000,
        1px 0 0 #000,
        1px 1px 0 #000,
        0 1px 0 #000,
        -1px 1px 0 #000,
        -1px 0 0 #000; */
    z-index: 3;
}
#myModal {
    display: none;
    position: absolute;
    z-index: 4;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
    visibility: hidden;
  }
  
  #modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }
  
  #closeModal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  #closeModal:hover,
  #closeModal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  #modalSearchInput {
    position: relative;
    margin-bottom: 10px;
  }
  
  #modalButtons {
    position: relative;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }