* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #D8D8D8;
}

header {
    height: 120px;
}

#game-regend {
    text-align: center;
}

#game-container {
    padding: 0 10%;
}

#numOfAnimals {
  accent-color: #967D00;
}

#start-timebar {
    margin: 10px 0;
    height: 40px;
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#startBtn {
    display: block;
    height: 40px;
    width: 100%;
    grid-column-start: 3;
}

#timebar {
    display: none;
    height: 20px;
    width: 100%;
    margin: auto;
}

#backPattern {
    border: none;
}

#play-field {
    margin: auto;
    display: grid;
    column-gap: 15px;
    row-gap: 15px;
    align-items: center;
    justify-items: center;
    border: solid;
}

#matched-cards-field {
    display: flex;
    justify-content: space-evenly;
    border: solid;
    height: 150px;
}
