body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: #1c1c1f;
    color: #fff;
}

h1 {
    text-align: center;
    text-transform: uppercase;
    font-weight: lighter;
    letter-spacing: 1rem;
}

#clickSpeedWrapper {
    position: absolute;
    cursor: crosshair;
    transform: translate(-50%, -50%);
    background: #0a70ff;
    left: 50%;
    top: 50%;
    width: 70%;
    height: 70%;
    display: grid;
    text-align: center;
    align-items: center;
    box-shadow: 5px 5px 50px 10px #000, -5px -5px 50px 10px #000;
    font-size: 40px;
    font-weight: lighter;
    user-select: none;
}

#clickSpeedStart {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    text-align: center;
    align-items: center;
    text-transform: uppercase;
}

#clickField:active {
    background: #0044a2;
    transform: scale(1.02);
}

#clickField {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    text-align: center;
    align-items: center;
    transition: 25ms;
}

#timerDiv {
    position: absolute;
    pointer-events: none;
    user-select: none;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
}

.settings {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
    font-size: 20px;
    display: grid;
    grid-column-gap: 3rem;
    padding: 1rem;
}

.settingsGrid {
    display: inline-grid;
    grid-row: 1;
}

.settings input, label {
    cursor: pointer;
    user-select: none;
}

#scIn {
    width: 5rem;
    border: none;
    padding: 0.5rem;
}

#scIn:focus {
    outline: none;
}