/*
 * Skin: Default
 */

/* pagina: tipo di carattere e colore del testo */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

/* titolo della pagina: colore del testo */
h1 {
    color: blue;
}

/* bottoni: colore del testo, dello sfondo e configurazione del bordo */
.btn {
    text-decoration: none;
    color: white;
    border: solid 1px;
    padding: 5px;
    background-color: #aaa;
}

/* caselle di gioco: forma rotonda */
button {
    border-radius: 50%;
}

/* sezione di gioco: colore di sfondo */
.board {
    background-color: blue;
}

/* giocatore 1: colore delle pedine */
.player1 {
    background-color: yellow;
}

/* giocatore 2: colore delle pedine */
.player2 {
    background-color: red;
}

/* sezione dei punteggi: colore di sfondo */
.main {
    background-color: gray;
}

/* giocatore attivo: colore di sfondo */
.active {
    background-color: darkgray;

}

/* Animazione delle pedine quando vince il giocatore 1  (Giallo <-> Blu) */
@keyframes player1Animation {
    0% {
        background-color: yellow;
    }

    10% {
        background-color: blue;
    }

    20% {
        background-color: yellow;
    }

    30% {
        background-color: blue;
    }

    40% {
        background-color: yellow;
    }

    50% {
        background-color: blue;
    }

    60% {
        background-color: yellow;
    }

    70% {
        background-color: blue;
    }

    80% {
        background-color: yellow;
    }

    90% {
        background-color: blue;
    }

    100% {
        background-color: yellow;
    }
}

/* Animazione delle pedine quando vince il giocatore 2  (Rosso <-> Blu) */
@keyframes player2Animation {
    0% {
        background-color: red;
    }

    10% {
        background-color: blue;
    }

    20% {
        background-color: red;
    }

    30% {
        background-color: blue;
    }

    40% {
        background-color: red;
    }

    50% {
        background-color: blue;
    }

    60% {
        background-color: red;
    }

    70% {
        background-color: blue;
    }

    80% {
        background-color: red;
    }

    90% {
        background-color: blue;
    }

    100% {
        background-color: red;
    }
}