*{
    margin: 0;
    padding: 0;
    
}


h1{
    margin-top: 5%;
    text-align: center;
    margin-bottom: 20px;
    color: rgb(255, 255, 255);

}
 P{
 font-size: 15px;
 font-weight:bold;
margin-top: 10px;
color: aliceblue; }

 h4{
    text-align: center;
    margin-bottom: 20px;
    color: crimson;

 }

 body {
    
   
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif; /* Set font family */
}
.startpg-container {
    width: 50%;
    margin: 0 auto; /* Center horizontally */
    text-align: center;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0,); /* Add shadow effect */
    background-color: rgba(255, 255, 255, 0.5);/* White background */
}
.startpg-heading {
    font-size: 24px;
    color: #333333; /* Dark gray text color */
    margin-bottom: 20px;
}
.startpg-pp {
    font-size: 18px;
    color: #666666; /* Gray text color */
    margin-bottom: 30px;
}

.startpg-p {
    font-size: 18px;
    color: #080505; /* Gray text color */
    margin-bottom: 30px;
}
.startpg-button {
    background-color: #f4db00; /* Green button */
    color: rgb(170, 2, 2);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease; /* Smooth transition */
}
.startpg-button:hover {
    background-color: #f07a13; /* Darker green on hover */
}
 section{
 padding-left: 50px;
 }

ul{
    /* *horizontally centering our board*/
    margin: 0 auto;
    /*making our board 400 by 400px*/
    width: 250px;
    height: 250px;
    /* *lets get rid of those pecky bullet points */
    list-style: none;
    /* *make the context flex that will wrap horizontall and equally space s*/
    display: flex;
    flex-wrap: wrap;
    flex-flow: horizontal wrap;
    justify-content: center;
    align-content: space-between;
    
}

.gamep-headding {
    color: #f07a13;
    text-shadow:2px 2px 4px rgba(0, 0, 0, 0.5);
   
}

h2 {
    color: gold;
    text-align: center;
    font-size: 60px;
    font-family: futura;
    margin-top: -440px;
  }

li{
    height:25%;
    width: 15%;
    border: 1px solid rgb(218, 216, 216);
    flex-basis:31%;
    /* *now we center our text vertically and horizontall */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background:url('./images/rock2.jpg');
}

.collectedNoGold{
    background:black;
}
.collectedGold{
    background: rgb(255, 221, 27);
}
#reset{

    border: 1px solid white;
    background: #f1a81e;
    width: 120px;
    height:20px;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

#gameboard {
    margin-top: 30px;
}