
html, body {
    font-family: Calibri, 'Trebuchet MS', sans-serif;
    width: 100%;
    margin: 0;
}

h1, h2 {
    display: block;
    margin: 0;
}
h1 {
    float: left;
}

h2 {
    float: right;
}

hr {
    clear: both;
    margin: 1rem 0 1rem 0;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.25);
}

.slidergroup {
    display: block;
    padding: 0.5rem;
    margin: 0 1rem 0 1rem;
    width: calc(100% - 70px);
    border-top: 1px solid gray;
}

.slidergroup:nth-child(even) {
    background: linear-gradient(to right,#efefef, white);
}
.slidergroup:nth-child(odd) {
    background: linear-gradient(to right,#e6e6e6, white);
}

label {
    font-weight: bold;
    display: block;
}

input[type=text] {
    background-color: #002366;
    color: white;
    font-size: 1rem;
    text-align: center;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.25);
    width: 120px;
}

#scorecontainer, #totalcontainer {
    width: 100%;
    min-width: 400px;
    max-width: 1200px;
}

#totalcontainer {
    font-size: 1.5rem;
    height: 80px;
    margin-left: 1rem;
    border-top: 1px solid gray;
}

#total {
    font-size: 2rem;
    width: 130px;
    float: left;
    height: 100%;
}

#message {
    float: left;
    font-size: 1.25rem;
    height: calc(100% - 1rem);
    padding: 0.5rem;
    width: calc(100% - 220px - 1rem);
    box-shadow: 2px 2px 4px rgba(0,0,0,0.25);
    text-shadow: 1px 1px 2px rgba(0,0,0,1);
    line-height: 1.5rem;
}


label {
    width: calc(100% - 180px);
}

input[type="range"] {
    margin-top: 0.75rem;
    margin-right: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: calc(100% - 180px);
}

input[type="range"]::-webkit-slider-runnable-track {
    background-color: #002366;
    border-radius: 1rem;
    height: 1rem;
    border-color: black 1px solid;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.25);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; 
    appearance: none;
    margin-top: -8px;
    background-color: #FFF;
    border: 7px solid #990000;
    border-radius: 0.5rem;
    height: 2rem;
    width: 2rem;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#header {
    height: 90px;
}

