* {
    box-sizing: border-box;
}

html,body {
    height: 100%;
    width: 100%;
}

body {
    background: #dfe6e9;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0;
}

.status {
    padding: 5%;
    max-width: 600px;
    text-align: center;
    font-size: 1.3em;
    text-shadow: 1px 1px #eee;
}

.wrap {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

button {
    position: absolute;
    width: 80%;
    bottom: 5%;
    left: 0;
    right: 0;
    max-width: 400px;
    margin: auto;
    border-radius: 6px;
    font-size: 1em;
    padding: 0.75em;
    cursor: pointer;
    background: #2d3436;
    border: 1px solid #636e72;
    color: white;
}

button:hover,
button:focus {
    background: #636e72;
}

.capture {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.capture video {
    width: 101%;
    transform: scaleX(-1);
}

.progress-wrap {
    position: relative;
    margin-top: 2em;
    height: 2em;
    width: 90%;
    background: #fff;
    border-radius: 6px;
}

.progress {
    position: absolute;
    height: 100%;
    background: #636e72;
    border-radius: 6px;
}