@font-face {
    font-family: OCR-A;
    src: url(./assets/fonts/OCRAEXT.TTF);
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    background: url(./assets/images/background.jpg);
    background-repeat: repeat;
    background-size: 300px;
    display: flex;
    align-items: center;
    align-content: center;
}

.video-instance {
    display: none;
}

.scene {
    filter: contrast(140%);
    mix-blend-mode: multiply;
    box-shadow: 1px 1px 12px #e27f05;
}

.interface, .waveshape {
    position: absolute;
    top: 0;
    left: 0;
}

.interface {
    z-index: 2;
}

@keyframes rotateBiohazard {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(120deg);
    }
}

.biohazard {
    position: absolute;
    z-index: 3;
    width: 80px;
    right: 10px;
    top: 10px;
    animation: rotateBiohazard 1s linear infinite;
    mix-blend-mode: overlay;
}

.waveshape {
    z-index: 4;
}

.container {
    width: 772px;
    height: 650px;
    background-color: darkorange;
    position: relative;
    margin: auto;
    transition: background-color 1s linear;
}

.red {
    background-color: red;
}

.mute-speech {
    font-family: OCR-A, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: lightgray;
    border: 2px solid red;
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 250px;
    height: 35px;
    cursor: pointer;
    font-size: 15px;
    background: transparent;
    transition: 0.3s;
    z-index: 5;
    outline: none;
}

.mute-speech:hover {
    background-color: rgba(255, 0, 0, 0.356);
}

.mute-speech:active {
    background-color: rgba(255, 0, 0, 0.733);
}

@media (max-width: 770px) {
    .container {
        width: 100%;
        height: 100%;
        background-color: red;
    }
}

@keyframes avarageColorDashes {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 305px;
    }
}
