* {
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
}

#Field {
    background: -webkit-linear-gradient(top, #58bd44 10%, #3f4f2b 70%, #27301a 90%, black 100%);
    background: -moz-linear-gradient(top, #58bd44 10%, #3f4f2b 70%, #27301a 90%, black 100%);
    background: -o-linear-gradient(top, #58bd44 10%, #3f4f2b 70%, #27301a 90%, black 100%);
    background: -ms-linear-gradient(top, #58bd44 10%, #3f4f2b 70%, #27301a 90%, black 100%);
    background: linear-gradient(top, #58bd44 10%, #3f4f2b 70%, #27301a 90%, black 100%);
    height: 560px;
    position: absolute;
    border: 2px solid navy;
    border-bottom: 0 solid navy;
    border-top-left-radius: 10px 10px;
    border-top-right-radius: 10px 10px;
    width: 500px;
    margin-left: 200px;
    margin-top: 100px;
    overflow: hidden;
}

#Paddle {
    position: absolute;
    width: 80px;
    height: 14px;
    margin-top: 510px;
}

#PaddleFirst {
    position: absolute;
    background: #e24400;
    width: 14px;
    height: 15px;
    border-left: 2px solid white;
    border-top-left-radius: 7px 2px;
    border-top-right-radius: 7px 2px;
    border-bottom-left-radius: 7px 2px;
    border-bottom-right-radius: 7px 2px;
}

#PaddleMiddle {
    background-color: #828282;
    position: absolute;
    margin-left: 14px;
    border-left: 2px solid white;
    border-right: 2px solid white;
    border-top: 2px solid white;
    width: 48px;
    height: 10px;
    border-radius: 1px;
    top: 1.5px;
}

#PaddleLast {
    position: absolute;
    background: #e24400;
    width: 14px;
    height: 15px;
    margin-left: 66px;
    border-right: 2px solid white;
    border-top-left-radius: 7px 2px;
    border-top-right-radius: 7px 2px;
    border-bottom-left-radius: 7px 2px;
    border-bottom-right-radius: 7px 2px;
}

#score {
    position: absolute;
    margin-top: 100px;
    margin-left: 720px;
    color: green;
    font-size: 20px;
}

#life {
    position: absolute;
    margin-top: 120px;
    margin-left: 720px;
    color: green;
    font-size: 20px;
}

#speed {
    color: green;
    position: absolute;
margin-top: 150px;
margin-left: 720px;
}

#click {
    margin-top: 20px;
    margin-left: -35px;
    width: 150px;
    color: white;
    text-align: center;

    -webkit-transition: 4s;
    -moz-transition: 4s;
    -o-transition: 4s;
    -ms-transition: 4s;
    transition: 4s;
}

.brick {
    margin-left: 5000px;
    margin-top: -2000px;
    width: 45px;
    height: 18px;
    display: none;
    position: absolute;
    background-color: #8e5104;
    border: 1px solid white;

    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
}

.Ball {
    border-radius: 10px;
    position: absolute;
    width: 6px;
    height: 6px;
    border: 2px solid white;
    background: #e29617;
    margin-top: 495px;
    margin-left: 40px;
}

.bullet {
    position: absolute;
    width: 3px;
    height: 15px;
    background-color: red;
    margin-top: 30px;
    margin-left: 5px;
}
