@charset "utf-8" ;

*,::after,::before {
    box-sizing: border-box;
}

/*タイピングゲーム全体*/
body {
    font-size: 6em;        /*デフォルトの6倍の大きさにする*/
    text-align: center;
}
/*ゲームの残り秒数が表示されるタイマーの領域*/
.count {
    margin: 0;
    font-weight: bold;
    color: #888;
}
/*テキストが表示される領域*/
.wrap {
    margin-top: 20px;
    padding: 80px 40px;
    background: #666;
    font-weight: bold;
    color: #fff;
}
/*正しくタイプされた場合のテキスト*/
.typed {
    color: lightgreen;
}
/*ミスタイプの場合の背景*/
.mistyped {
    background-color: red;
}