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

body {
    background-color: black;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
}
.game-container {
    min-width: 544px;
    max-width: 544px;


}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;

}

.stats {
    color: white;
    font-size: 16px;

}

.cards-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    

}

.card {
    width: calc(25% - 5px);
    aspect-ratio: 1;
    background-color: blueviolet;
    border: 2px solid #5a0caf;
    border-radius: 12px;
    background-image: url(./assets/lines.svg);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}

.revealed {
    background-color: white;
    border-bottom: #dadada;
    cursor: not-allowed;

}

.card-emoji {
    font-size: 40px;
    display: none;

}

.revealed .card-emoji {
    display: block;
}

.button {
    width: 100%;
    height: 52px;
    background-color: #8234e9;
    color: white;
    font-weight: 500px;
    font-size: 16px;
    border-radius:  7px;
    border: 2px solid #5a0caf;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    transition: background-color 0.3s;
    margin-top: 32px;


}

.button:hover {
    background-color: #7029d5;

}

