body {
    background: #dbcc1d;
    font-family: arial;
    color: #052687;
    text-transform: uppercase
}

.scoreboard {
    background: #0317ff;
    width: 1400px;
    margin: 20px auto;
    box-shadow: 0px 10px 25px #705f5f;
    border-radius: 15px
}

.header {
    padding: 0px 0px;
    font-size: xxx-large;
    line-height: 0;
    text-align: center;
    display: flex;
    align-items: center;
    background-color: #dddbbf;
    border-radius: 15px 15px 0 0;
    border-bottom: solid 2px #dddbbf
}

.header h1 {
    flex-grow: 1;
    font-size: 1.5em;
    letter-spacing: 3px;
    font-weight: 400
}

.player {
    display: flex;
    font-size: 1.2em;
    border-bottom: solid 2px #dddbbf;
    letter-spacing: 2px
}

.player-name:hover .remove-player {
    visibility: visible
}

.player-name:hover .remove-player {
    visibility: visible
}

.player-name {
    flex-grow: 1;
    font-size: 40px;
    font-weight: 700;
    padding: 20px 10px 10px
}

.player-score {
    width: 250px;
    background: blue
}

.counter {
    display: flex
}

.counter-action {
    border: none;
    font-weight: 700;
    color: #fafafa;
    display: block;
    padding: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.counter-action.increment {
    background: #1eab25;
    font-size: 40px;
}

.counter-action.increment:hover {
    background: #549d59;
    cursor: pointer
}

.counter-action.decrement {
    background: #a31616;
    font-size: 40px;
}

.counter-action.decrement:hover {
    background: #c44442;
    cursor: pointer
}

.counter-score {
    flex-grow: 1;
    background: #c3c2b2;
    color: #11478b;
    text-align: center;
    font-family: monospace;
    padding: 10px;
    font-size: 3em
}

.stats {
    margin-top: 0;
    font-weight: 400
}

.stats td:first-child {
    text-align: right;
    font-weight: 400;
    letter-spacing: 2px;
    color : #11478b;
    font-size: 0.9em;
}

.stats td:last-child {
    text-align: left;
    color: #11478b;
    font-size: 0.9em;
}

.header .stats,
.header .stopwatch {
    width: 170px
}

.add-player-form form {
    display: flex;
    background-color: #d1d1ca;
    border-radius: 0 0 12px 12px
}

.add-player-form input[type=text] {
    flex-grow: 1;
    font-size: xx-large;
    font-weight: 700;
    font-family: 'Times New Roman', Times, serif;
    border-width: 0 0 1px;
    margin: 15px 10px 15px 15px;
    padding: 10px;
    border-radius: 5px;
    background-color: #d1d1ca;
    border-style: none;
    text-shadow: none;
    text-transform: uppercase;
    color: #11478b;
    letter-spacing: 2px;
    outline: none
}

.add-player-form input[type=text]::-webkit-input-placeholder {
    color: #11478b;
    letter-spacing: 2px
}

.add-player-form input[type=text]:focus {
    background-color: #c3c2b2
}

.add-player-form input[type=submit] {
    display: block;
    font-size: .6em;
    margin: 15px 15px 15px 0;
    padding: 10px;
    font-family: 'Times New Roman', Times, serif;
    background-color: #11478b;
    border-radius: 5px;
    border: none;
    color: white;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: none;
    text-transform: uppercase
}

.add-player-form input[type=submit]:hover {
    background: #d1d1ca;
    color: #36383b;
    cursor: pointer
}

.remove-player {
    visibility: hidden;
    margin-right: 10px;
    color: #e57373;
    cursor: pointer
}

.stopwatch {
    padding: 15px 10px 5px;
    margin: -5px -10px -5px 10px;
    background: #dddbbf;
    border-radius: 0 15px 0 0
}

.stopwatch-time {
    font-family: monospace;
    font-size: 2em
}

.stopwatch button {
    margin: 8px 5px;
    background-color: #11478b;
    border-radius: 5px;
    padding: 7px 8px;
    border: none;
    color: white;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: none;
    text-transform: uppercase
}

.stopwatch button:hover {
    background: #4c563f;
    color: #fffff5;
    cursor: pointer
}

.stopwatch h2 {
    font-size: .9em;
    margin: 0;
    font-weight: 400;
    letter-spacing: 2px;
    color: #11478b;
}

.page-header {
    width: 100%;
    text-align: center;
}