* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #20242d;
    color: white;

    font-family: Arial, Helvetica, sans-serif;
}

.game {
    width: 100%;
    max-width: 600px;

    padding: 30px;
    text-align: center;
}

h1 {
    margin-top: 0;
    margin-bottom: 10px;
}

.instruction {
    margin-bottom: 25px;
    color: #d8d8d8;
}

.character {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 320px;
}

#head {
    width: 300px;
    max-width: 90%;

    cursor: pointer;
    user-select: none;

    transition: transform 0.08s ease;
}

#head:hover {
    transform: scale(1.02);
}

#head:active {
    transform: scale(0.93);
}

#contador {
    margin-top: 20px;
    margin-bottom: 8px;

    font-size: 24px;
    font-weight: bold;
}

#poderClique {
    margin: 0;

    font-size: 16px;
    color: #b9c0cc;
}