body {
    width: 98vw;
    height: 95vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-image: url("../Images/raceflag.png");
    background-size: cover;
    color: white;

}
#container {
    width: 60%;
    height: 60%;
    border-style: solid;
    border-color: #cd5b33;
    margin-top: -100px;
    border-width: 10px;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 20% 20% 20% 20% 20%;
    text-align: center;
    background-color: white;


}
#title {
    background-color:rgb(110, 141, 199);
    grid-column:  1 / 2;
    grid-row: 0 / 1;
    color: white;
    font-size: 1.7em;
    border-color: #cd5b33;
    border-style: solid;
    font-family: 'Bungee Shade', cursive;
}

#stats{
    border-color: #cd5b33;
    border-style: solid;
    background-color: rgb(110, 141, 199);
    font-family: 'Bungee Hairline', cursive;
    font-weight: bolder;
}


#timer {
    background-color: yellow;
    grid-column:  2 / 3;
    grid-row: 0 / 1;
    color: red;
    font-family: 'Bungee Hairline', cursive;
    font-weight: bolder;
    width: 50%;
    margin-left: 145px;

}


#canvas-container {
    grid-column:  1 / 6;
    grid-row: 2 / 6;
}
#canvas {
    width: 100%;
    height: 100%;
}

#spedometer {

    width: 300px;
    text-align: center;
    height: 100px;
    padding-top: 10px;
    font-size: 2em;
}
#startBtn{
    background: #cd5b33;
    border-style: solid;
    border-color: white;
    padding: .5em .5em;
    width: 250px;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4em;
    margin-top: 5px;

}
#startBtn:hover{
    background: rgb(110, 146, 214);
}

#restartBtn {
    background: rgb(110, 146, 214);
    border-style: solid;
    border-color: white;
    padding: .5em .5em;
    width: 250px;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4em;
    display: none;
    margin-top: 5px;


}
#restartBtn:hover{
    background: #cd5b33;
}





#initialModal {
    z-index: 1;
    position: fixed;
    display: inline;
    background-color: rgba(110,146,214,1);
    width: 1150px;
    height: 590px;
    top: 35px;
    text-align: center;
    border-width: 10px;
    border-style: solid;
    border-color: #cd5b33;
}
.modal-header{
    font-family: 'Bungee Shade', cursive;
    font-size: 2.5em;
    color: white;
}
.modal-body{
    font-family: 'Bungee', cursive;
}
h3 {
    font-size: 2em;
}
p {
    font-size: 1.5em;
}
#winningModal {
    z-index: 1;
    position: fixed;
    display: none;
    background-color: rgba(110,146,214,1);
    width: 1150px;
    height: 590px;
    top: 35px;
    text-align: center;
    border-width: 10px;
    border-style: solid;
    border-color: #cd5b33;

}
#losingModal {
    z-index: 1;
    position: fixed;
    display: none;
    background-color: rgba(110,146,214,1);
    width: 1150px;
    height: 590px;
    top: 35px;
    text-align: center;
    border-width: 10px;
    border-style: solid;
    border-color: #cd5b33;

}