body {

    background-color: #000000;
    color: white;
    /*position: relative;*/
}

header {
    width: 100%;
    background-color: #ae0001;
    text-align: center;
}

h2 {
    margin-top: 40px;
    font-size: 36px;
}

.dataBox {
    width: 200px;
    height: 150px;
    border: 1px solid white;
    text-align: center;
}

.formWrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

#gameWrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    margin-top: 25px;
    margin-bottom: 25px;
}

#chatBox {
    width: 500px;
    height: 100px;
    background-color: white;
    color: black;
    margin: auto;
    overflow: scroll;
}

#playerName, #start {
    margin-top: 25px;
}

#chat {
    width: 452px;
}

#playerOneRPS, #playerTwoRPS {
    margin-top: 20px;
    margin: auto;
    width: 50%;
}

#playerOneRPS p, #playerTwoRPS p {
    margin-top: 20px;
}

#playerOneRPS p:hover, #playerTwoRPS p:hover {
    color: black;
    background-color: white;
}