* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font: 3em Helvetica, Arial;
    background-color: black;
}

form {
    background: #000;
    padding: 3px;
    position: fixed;
    bottom: 20%;
    width: 100%;
    z-index: 999;
}

form input {
    border: 0;
    padding: 10px;
    width: 64%;
    margin-right: .5%;
    height: 100px;
    bottom: 5px;
    font-size: 28px;
    float: left;
}

form button {
    width: 35%;
    background: rgb(201, 196, 196);
    border: none;
    padding: 10px;
    font-size: 28px;
    height: 100px;
}

#messages {
    list-style-type: none;
    margin: 0;
    padding: 0;
    z-index: 999;
    position: fixed;
    top: 80%;
    pointer-events: none;
    overflow-y: auto;
    height: 300px;
}

#messages li {
    padding: 5px 10px;
    color: white;
    pointer-events: none;
}

h3,
h4,
h5 {
    color: white;
    margin-top: 50px;
    text-align: center;
    left: auto;
    right: auto;
}

#my-video{
    position: fixed;
    top: 0%;
    z-index: 99;
    pointer-events: none;
}

#my-video2{
    position: fixed;
    bottom: 15%;
    z-index: 99;
    pointer-events: none;
}

/* #messages li:nth-child(odd) { background: #eee; } */