@charset "UTF-8";
body {
    background: #fff;
    font-family: "Montserrat", sans-serif;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1 {
    font-family: "Montserrat", sans-serif;
    line-height: 0.7;
    margin: 0 auto;
    text-align: left;
    width: 1.875em;
}

.button {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
    display: inline-block;
    padding: 1.25em 3em;
    text-decoration: none;
    -webkit-transition: 0.25s ease;
    transition: 0.25s ease;
}

.button:hover {
    color: #000 !important;
}

.screen {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}

.screen header {
    position: relative;
    top: 50%;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
}

.screen h1 {
    color: #fff;
}

.screen-start {
    background: #54D17A;
}

.screen-start h1 {
    font-size: 6em;
}

.screen-start .button {
    color: #54D17A;
}

.screen-start h1+.button {
    margin-top: 5em;
}

.screen-win p {
    font-size: 6em;
    font-weight: 700;
    color: #fff;
    position: relative;
}

.screen-win p:before {
    position: absolute;
    left: 0;
    right: 0;
    color: #000;
    font-size: 4em;
    font-weight: 400;
    line-height: 0;
    z-index: -1;
}

.screen-win-tie {
    background: #54D17A;
}

.screen-win-one {
    background: #FFA000;
}

.screen-win-one .button {
    color: #3688C3;
}

.screen-win-one p:before {
    content: "o";
    top: 1.75rem;
}

.screen-win-two {
    background: #3688C3;
}

.screen-win-two .button {
    color: #FFA000;
}

.screen-win-two p:before {
    content: "×";
    top: 4.5rem;
}

.board {
    padding-top: 1em;
}

.board h1 {
    margin-top: 0.3em;
}

.players {
    color: rgba(0, 0, 0, 0.2);
    text-align: center;
    position: absolute;
    top: 1rem;
    width: 35%;
    padding: 1.25em 0 1em;
    outline: 1px solid #ccc;
    transition: 1s;
}

.players svg g {
    fill: rgba(0, 0, 0, 0.25);
}

.players:first-child {
    left: 2.5%;
}

.players:last-child {
    right: 2.5%;
}

.players-turn {
    outline: none;
}

#player1.active svg g, #player2.active svg g {
    fill: #fff;
}

#player1.active {
    background: #FFA000;
}

#player2.active {
    background: #3688C3;
}

.boxes {
    width: 480px;
    margin: 3em auto 0;
}

.boxes .box {
    background: #EFEFEF;
    border-radius: 4px;
    width: 150px;
    height: 150px;
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 1.75em;
    cursor: pointer;
    box-sizing: border-box;
    transition: 0.2s ease;
    background-size: 100px 100px;
    background-repeat: no-repeat;
    background-position: center center;
}

.boxes .box:nth-child(3n) {
    margin-right: 0;
}

.boxes .box-filled-1 {
    background-color: #FFA000;
    background-image: url(../img/o.svg);
}

.boxes .box-filled-2 {
    background-color: #3688C3;
    background-image: url(../img/x.svg);
}



/* ADDED STYLES */

.player-name {
    margin: 0 0 7px 0;
    font-weight: normal;
    font-size: 1.25em;
}

.player-name-1 {
    color: #FFA000;
}

.player-name-2 {
    color: #3688C3;
}

#player1.active .player-name-1 {
    color: white;
}

#player2.active .player-name-2 {
    color: white;
}

.boxes {
    margin-top: 60px;
}

/* start screen */

form {
    padding: 20px 0;
}

.form-instructions {
    margin: 30px 0 15px 0;
    display: block;
}

.player-select, .player-select-label {
    display: inline;
}

.player-select-label {
    margin: 20px 15px 0 5px;
}

.player2-select-label {
    margin-right: 0;
}

#name-p1, #name-p2 {
    margin: 5px 15px 0 0;
    border: none;
    padding: 10px;
}

#name-p2 {
    margin-right: 0;
}

form .button {
    margin: 30px auto;
    display: block;
    border: none;
}
