#loadCanvas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url("./progress_bar/start_background.jpg");
    background-size: cover;
    background-position: center;
}

#logo {
    width: 90vw;
    height: 34vw;
    background-image: url("./progress_bar/logo_small.png");
    background-size: 100% 100%;
    background-position: top left;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -43vh 0 0 -45vw;
}

#progressBarContainer {
    width: 70vh;
    height: 4vh;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    padding: 2px;
    position: absolute;
    left: 50%;
    bottom: 2vh;
    margin-left: -35vh;
}

#progressBarStroke {
    width: 100%;
    height: 100%;
    border: 2px solid #969696;
    box-sizing: border-box;
    padding: 2px;
}

#progressBar {
    width: 0%;
    height: 100%;
    background-color: rgba(138, 243, 122, 0.9);
}

#touchMessage {
    width: 90vw;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 5vw;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid #969696;
    padding: 4vw 3vw;
    position: absolute;
    left: 5vw;
    bottom: 5vh;
    box-sizing: border-box;
    text-align: center;
    visibility: hidden;
}

@media screen and (orientation:portrait) {
    #logo {
        width: 90vw;
        height: 60vw;
        margin: -30vw 0 0 -45vw;
    }

    #progressBarContainer {
        width: 70vw;
        height: 4vw;
        margin-left: -35vw;
        bottom: 2vh;
    }

    #touchMessage {
        bottom: 45vh;
        font-size: 4vh;
    }
}
