#title {
    height: 45px;
    width: 1000px;
    border: 1px solid black;
    position: relative;
}
#pong-js {
    top: -15px;
    left: 435px;
    position: absolute;
}
#ice, #container{
    height: 600px;
    width: 1000px;
    top: 60px;
    border: 1px solid black;
    background-color: #dddddd;
    position: absolute;
}
#centerLine{
    border: 2px dashed black;
    height: 597px;
    width: 0px;
    position: absolute;
    left: 500px;
    top: 0px;
}
#scoreLeft{
    position: absolute;
    font-size: 3em;
    color: green;
    top: 0px;
    left: 430px;
}
#scoreRight{
    position: absolute;
    font-size: 3em;
    color: brown;
    top: 0px;
    left: 550px;
}
#puck{
    /*border: 1px solid red;*/
    border-radius: 50%;
    height: 25px;
    width: 25px;
    background-color: black;
    position:relative;
}
#output{
    position:fixed;
    width:50em;
    height:1.5em;
}
#paddle1{
    width: 10px;
    height: 80px;
    background-color: brown;
    border: 1px solid brown;
    top: 260px;
    left: 960px;
    position: absolute;
}
#paddle2{
    width: 10px;
    height: 80px;
    background-color: green;
    border: 1px solid green;
    top: 200px;
    left: 30px;
    position: absolute;
}
#selects{
    position: absolute;
    top: 650px;
}
