body {
    text-align: center;
    font-family: 'Times new Roman', sans-serif;
    background-image: url("images/forest.jpg");
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    
}

h1 {
    color: #f9f9f9;
    font-size: 36px;
    margin: 20px 0;
    text-shadow: 1px 1px 2px #ccc;
}

p {
    color: #ffffff;
    font-size: 24px;
    margin: 10px 0;
    font-weight: 500;
   
}

canvas {
    
    background-color: #d1ccc0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 20px auto;
}



button {
    background-color: #00796b;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    margin: 10px;
    transition: background-color 0.3s;
    
}

button:hover {
    background-color: #004d40;
}

button:active {
    transform: scale(0.95);
}

#gameScore {
    font-weight: bold;
    font-size: 1.5em;
    
    color:#00796b;
    background-color: #00796b;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 1em;
    
    margin: 10px;
    transition: background-color 0.3s;
}


h6{
    font-size: medium;
    color: #c1c2c3;
    margin-top: 20px;
}

