body,
html,
main {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    font-family: 'Space Mono', monospace;
    background-color: black;
}

header {
    z-index: 2;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: white;
    font-family: 'Lobster', cursive;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

h1 {
    padding-left: 24px;
}

header img {
    padding-right: 24px;
    cursor: pointer;
}

.flash {
    width: 100vw;
    height: 100vh;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.1s;
}

.single-webcam {
    width: 100%;
    height: 100%;
    background: black no-repeat;
    background-size: cover;
    border-radius: 100%;
    box-shadow: inset 0px 0px 10px black, inset 0px 0px 10px black;
}

.text {
    text-align: right;
    position: fixed;
    bottom: 24px;
    right: 24px;
    color: white;
    font-size: 1.2rem;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}

.invisible {
    opacity: 0;
}