/* Resets */

div {
    margin: 0;
}

video {
    margin: 0;
    object-fit: cover;
    position: fixed;
}

body {
    margin: 0;
    font-family: acumin-pro, sans-serif;
    font-size: 1.2em;
    color: #2b2727;
    background-color: #F2F2F2;
}

h1 {
    text-align: center;
    /* font-size: 1.8em; */
}

form {
    text-align: center;
}

a {
    color: #2b2727;
}

a {
    color: #000000;
}

input[type=email] {
    height: auto;
    width: auto;
    padding: 12px 15px 12px 15px;
    background-color: #fff;
    border: 1px solid #bfbfbf;
    border-radius: 3px;
    color: #4a4a4a !important;
    font-size: 16px;
    box-shadow: none;
    -webkit-box-shadow: none;
}

input[type=submit], button {
    text-transform: uppercase;
    padding: 15px 24px;
    margin-top: 1em;
    color: #ffffff;
    border-radius: 3px;
    line-height: 1.3em;
    font-size: initial;
    white-space: normal;
    border: 1px solid #0D850D;
    background-color: #0D850D;
}

input[type=submit]:hover, input[type=submit]:focus, button:hover, button:focus {
    background: #10a110;
    border: 1px solid #0D850D;
}

button.cancel {
    background: #4a4a4a;
    border: 1px solid #4a4a4a;
}

button.cancel:hover, button.cancel:focus {
    background: #595959;
    border: 1px solid #595959;
}

.report {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
}

#wrapper {
    margin: 3% 15% 0% 15%;
}

#header {
    /* display: flex; */
    margin: 0 auto;
    padding: 0px 15px 0px 15px;
    max-width: 900px;
    background-image: url("https://watershed.co.uk/site-files/first-friday/waveshed-header.png");
    height: 34px;
    /* You must set a specified height */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    /* Resize the background image to cover the entire container */
}

#localVideo {
    top: 0px;
    right: 0px;
    transform: rotateY(180deg);
    -webkit-transform:rotateY(180deg); /* Safari and Chrome */
    -moz-transform:rotateY(180deg); /* Firefox */
}

#remoteVideo {
    left: 0px;
    top: 0px;
}

#app {
    margin: 0 auto;
    padding: 30px 30px 30px 30px;
    max-width: 870px;
    height: 100%;
    text-align: center;
    background-color: #ffffff;
}

#policy {
    margin: 0 auto;
    padding: 30px 30px 30px 30px;
    max-width: 870px;
    height: 100%;
    background-color: #ffffff;
}
#overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 1rem;
    color: white;
    left: 0px;
    top: 0px;
}

#footer {
    margin: 0 auto;
    max-width: 900px;
    padding: 30px 15px 30px 15px;
    color: #999999;
    text-align: center;
    background-color: #ffffff;
}

.warning {
    text-align: center;
    font-size: 5em;
    color: white;
    text-shadow: 0 0 10px black;
}

.bounce-enter-active {
    animation: bounce-in .5s;
}

.bounce-leave-active {
    animation: bounce-in .5s reverse;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}

.boxout {
    padding: 1em;
    margin: 1em;
    border: solid 1px #999999;
}