html {
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    height: 100%;
    font-family: arial;
    font-size: 16px;
    overflow: hidden;
    background: black;
    color: white;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h1,
h2,
h3 {
    margin: 10px;
    padding: 0px;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    margin: 10px;
    padding: 0px;
}

canvas {
    position: fixed;
    z-index: 900;
    top: 0px;
    left: 0px;
}

video {
    position: fixed;
    z-index: 800;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    transform: scale(-1, 1);
    filter: FlipH;
    object-fit: cover;
}

.switchCam {
    opacity: .7;
    position: fixed;
    width: 40px;
    height: 40px;
    text-align: center;
    color: white;
    font-size: 34px;
    bottom: 0px;
    left: 0px;
    z-index: 999;
    padding: 0px;
    margin: 0px;
}

.switchCam::before {
    content: '↻';
}

#textHolder {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 997;
    display: table;
    opacity: .5;
    text-align: center;
}

#text {
    display: table-cell;
    vertical-align: middle;
    font-weight: bold;
    font-size: 90px;
    font-size: 10vw;
    color: black;
}

#intro {
    position: absolute;
    z-index: 998;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    background: black;
}

#intro .intro-content {
    width: 1000px;
    margin: 40px auto 10px auto;
}

#intro #intro-cam-warning {
    display: none;
    color: #6bb85c;
}

#intro a {
    display: block;
    padding: 14px 16px;
    margin: 20px 0px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: 1px solid #eee;
    text-decoration: none;
}

#intro a.button-start {
    color: #fff;
    background-color: #6bb85c;
    border-color: #6bb85c;
}

#intro a.button-contact {
    color: #fff;
    background-color: #111;
    border-color: #fff;
    display: inline-block;
}


#intro #intro-word-list {
    border: 1px solid white;
    border-radius: 5px;
    padding: 14px 16px;
    margin: 20px 0px;
    display: none;
}

#intro #intro-word-list h3 {
    margin-top: 0px;
}

#intro #intro-word-list .button-clear {
    width: auto;
    height: 25px;
    float: right;
    padding: 5px 5px;
    margin: -7px -9px -35px -10px;
}

#intro #intro-word-list p {
    margin-top: 0px;
    color: #ccc;
}

.original,
.copyright {
    opacity: .7;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: auto;
    z-index: 999;
    padding: 0px;
    margin: 0px;
}




.copyright td {
    padding: 0px;
    margin: 0px;
    vertical-align: top;
    border-collapse: collapse;
}

.copyright .prev,
.copyright .next {
    width: 120px;
}

.copyright .prev a:after {
    content: ' Previous';
}

.copyright .next a:before {
    content: 'Next ';
}

.original,
.copyright td a {
    background: black;
    border-radius: 2px;
    color: white;
    display: block;
    text-align: center;
    text-decoration: none;
    margin: 0px;
    padding: 7px;
    color: white;
    height: 20px;
    overflow: hidden;
}

.original {
    width: 80px;
    bottom: 0px;
    right: 0px;
    top: auto;
    left: auto;
    height: 15px;
    border-top-left-radius: 15px;
}

mute {
    opacity: .5;
}

#start-button {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1001;
    padding: 15%;
    background: transparent;
}

#start-button svg {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: contain;
    stroke: #ffffff;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: #ffffff;
}

#fullscreen {
    display: block;
    position: fixed;
    top: 55%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 998;
    background: transparent;
}

#random {
    display: block;
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 10%;
    height: 10%;
    z-index: 999;
}

@media screen and (max-width: 800px) {

    .copyright .prev,
    .copyright .next {
        width: 60px;
    }

    .copyright .prev a:after {
        content: '';
    }

    .copyright .next a:before {
        content: '';
    }
}

@media screen and (max-width: 650px) {
    .copyright a span {
        display: none;
    }
}


@media screen and (display-mode: fullscreen) {
    .copyright {
        opacity: .2;
    }

    .copyright .prev,
    .copyright .next {
        width: 60px;
    }

    .copyright .prev a:after {
        content: '';
    }

    .copyright .next a:before {
        content: '';
    }

    .copyright a span {
        display: none;
    }
}

@media screen and (max-width: 1020px) {
    #intro .intro-content {
        width: auto;
        margin: 30px 10px 10px 10px;
    }
}