@charset "UTF-8";
/* CSS Document */
*{
    margin:0;
    padding:0;
}
html, body{
    height:100%;
}
body{
    background-color:#DDD;
}
#wrapper{
    max-width:960px;
    margin:0 auto;
    background-color:#FFF;
    height:800px;
    padding:1%;
    background-image: linear-gradient(blue, white 50%);
    font-family:Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
    position:relative;
    overflow:hidden;
}
#finger{
    position:absolute;
    width:100px;
    top:0;
    left:430px;
    z-index:1;    /* foran bomben */
}
#finger img{
    width:100%;
    height:auto;
}
#kugle{
    width:66px;
    height:68px;
    position:absolute;
    top:50px;
    left:450px;    /* bag fingeren */
}
#start{
    margin-top:300px;
    text-align:center;
    font-size:3em;
    font-weight:bold;
}
#start button{
    padding:1%;
    border-radius: 5px;
    color:#00F;
    font-size:0.8em;
    cursor:pointer;
    font-family:Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
    font-weight:bold;
}
#car{
    position:absolute;
    top:693px;
    left:1100px;
}
#points, #clock{
    padding:10px 2%;
    font-size:3em;
    font-weight:bold;
    width:10%;
}
#points{
    float:left;
}
#clock{
    float:right;
    text-align:right;
}

