body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    justify-content: center;
    justify-items: center;
    margin: 0px;
    padding: 0px;
    background-image: url(../assets/img/natureza\ 5.jpg);
    background-repeat: no-repeat;
    background-image: cover;
    background-size: cover;
}

header{
    justify-content: center;
    padding: 0px;
    backdrop-filter: blur(20px);
    flex-direction: row;
}

.fases{
    display: flex;
    justify-content: space-around;
}

.fases a{
    width: 100%;
    padding: 40px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: black;
}

.fases a:hover{
    transition: 0.5s;
    background-color: rgb(0, 160, 0);
}

#gameArea {
    height: 90vh;
    border-radius: 10px;
    margin: 50px;
    max-width: auto;
    margin: auto;
    text-align: center;
    color: rgb(0, 0, 0);
    flex-wrap: nowrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

#board {
    display: grid;
    grid-template-columns: repeat(3, 120px);
    gap: 10px;
    justify-content: center;
    margin: 20px;
}

.card {
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, #1f2937, #111827);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    cursor: pointer;
    transition: 0.2s;
}

.card:hover {
    transform: scale(1.08);
    background: #374151;
}

#turn {
    font-size: 20px;
    margin-top: 10px;
}

#message {
    font-size: 22px;
    margin: 10px;
}

button {
    margin: 20px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background: #22c55e;
    color: white;
    cursor: pointer;
}

button:hover {
    transition: 0.3s;
    transform: scale(1.08);
    background: #16a34a;
}

.tudo {
    margin-top: 60px;
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    justify-items: center;
}

.topo{
    justify-items: center;
}