body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f7f7;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
}

#game-container {
    position: relative;
    border: 2px solid #535353;
    background-color: #fff;
    width: 800px;
    height: 200px;
}

#score-board {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    color: #535353;
}

#gameCanvas {
    display: block;
    background-color: #fff;
}

#start-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: block;
    z-index: 10;
    pointer-events: none;
    width: 800px;
    height: 200px;
}

.start-title {
    color: #535353;
    margin: 60px 0 0 0;
    font-size: 48px;
}

.start-subtitle {
    color: #777;
    font-size: 24px;
    margin: 10px 0;
}

.start-dino {
    position: absolute;
    left: 60px;
    bottom: 20px;
    width: 40px;
    height: 40px;
}

.start-cactus {
    position: absolute;
    right: 60px;
    bottom: 20px;
    width: 40px;
    height: 60px;
}

#game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: none;
    z-index: 20;
}

#game-over h1 {
    color: #535353;
    margin: 0;
}

#game-over p {
    color: #777;
}
