*{
    margin: 0;
    padding: 0;
}
.hide{
    display: none;
}
.cargame{
    width: 100%;
    height: 100vh;
    background-image: url('bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;

}

.car, .randcar{
    width: 50px;
    height: 70px;
    background:red;
    position: absolute;
    bottom: 122px;
    background-image: url('car2.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;

}



.gamearea{
    width: 400px;
    height: 100vh;
    background: #2d3436;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-right: 5px dashed white;
    border-left: 5px dashed white;

}
.lines{
    width: 10px;
    height: 100px;
    background: white;
    position: absolute;
    margin-left: 195px;
}
.score{
    position: absolute;
    top: 15px;
    left: 40px;
    background: rgb(14, 173, 126);
    width :300px;
    line-height:70px ;
    text-align: center;
    color: white;
    font-size: 1.5em;
    box-shadow: 0 5px 5px #777;
}
.startscreen{
    position: absolute;
    background: rgb(231, 69, 109);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 1;
    text-align: center;
    border: 1px solid #ff6b6b;
    padding: 15px;
    margin: auto;
    width: 50%;
    cursor: pointer;
    font-size: 20px;
    text-transform: uppercase;
    box-shadow: 0 5px 5px #777;

}