body {
    font-family: Arial, sans-serif;
    
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

h2{
    color: #fa9017;
    background-color: black;
    text-align: center;
    margin: 20px;
    
}


.scoreboard {
    border: 6px solid rgb(184, 169, 169);
    width: 256px;
    padding-bottom: 10px; 
    background-color: #000000;
}

table,  td {
    border: 10px solid rgb(184, 169, 169);
    border-collapse: collapse;
    width: 256px; 
    color: white;
    background-color: gray;
    
}
td {
    padding-top: 5px;
    padding-bottom: 5px;
}



#board {
    display: grid;
    grid-template-columns: repeat(4, 100px);
    grid-template-rows: repeat(4, 100px);
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.card {
    width: 100px;
    height: 100px;
    background-color: #fa9017;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s;
    margin-bottom: 200px ;
}

.card.flipped {
    background-color: gray;
}

.card.matched {
    background-color: #0056b3;
}

button {
    padding: 10px 20px;
    margin-top: 10px;
    margin-left: 20%;
    background-color: #fa9017;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    
}

button:hover {
    background-color: #0056b3;
    justify-content: center;
}

