html, body {
	color: #000;
    font-family: sans-serif;
}

a {
	color: #000;
}

#gamefield {
    width: 1000px; /* DO NOT CHANGE */
    height: 600px; /* DO NOT CHANGE */
    border: 2px solid #000000; /* DO NOT CHANGE */
    position: relative;
    margin: 50px auto; /* DO NOT CHANGE */
    overflow: hidden;
}

#gamefield.hideCursor {
    cursor: none;
}

#player1,
#player2 {
    position: absolute;
    top: 250px; /* DO NOT CHANGE */
    width: 10px;
    height: 100px; /* DO NOT CHANGE */
    background-color: #000000;
}

#player1 {
    left: 0;
}

#player2 {
    right: 0;
}

#player1score,
#player2score {
    position: absolute;
    top: 30px;
    left: 25%;
    font-size: 30px;
}

#player2score {
    left: 73.5%;
}

#ball {
    width: 20px; /* DO NOT CHANGE */
    height: 20px; /* DO NOT CHANGE */
    background-color: #000000;
    border-radius: 50%;
    position: absolute;
    left: 290px; /* DO NOT CHANGE */
    top: 290px; /* DO NOT CHANGE */
}

#newGame {
    position: absolute;
    left: 390px;
    top: 30px;
    border: 1px solid #000000;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}

#newGame h2 {
    background-color: #000000;
    color: #ffffff;
    font-size: 21px;
    margin: 0;
    padding: 5px;
}

#newGame button {
    background-color: transparent;
    border: 0 none;
    border-right: 1px solid #000000;
    padding: 3px;
    font-size: 18px;
    width: 70px;
    cursor: pointer;
}

#newGame button:last-child {
    border: 0 none;
}

#result {
    left: 0;
    position: absolute;
    text-align: center;
    top: 285px;
    width: 100%;
}

#result .score {
    font-size: 20px;
    font-weight: bold;
}

#description {
    font-size: 16px;
    top: 150px;
    left: 280px;
    border: 1px solid #000000;
    position: absolute;
    background-color: #FFFFFF;
    width: 400px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.2);
}

#description h2 {
    margin: 0 0 10px;
}

.muteControl {
	text-align: center;
}

.imprint {
	color: #aaa;
	text-align: center;
}