.controller {
    background-color: #000000;
}

.splash {
    display: inline-block;
    padding: 15px 25px;
    width: 50%;
    font-family: Arial;
    font-size: 100px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #000000;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.wrapper {
    text-align: center;
    position: absolute;
    top: 25%;
    left: 50%;
    width: 100%;
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#container {
    top: 50%;
}

#timer {
    width: 100%;
    color: white;
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 250px;
}

#resetButton {
    display: none;
    color: white;
    background-color: #ff0000;
}

#startButton {
    color: black;
    background-color: #00ff00;
}

button:active {
    border: 2px solid #000000;
    box-shadow: none;
}

form, input {
    /* Remove First */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    color: white;
    font-family: Arial;
    font-size: 50px;
}

input[type=password] {
    width: 90%;
    height: 100px;
    color: black;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=password]:focus {
    background-color: #DDDDDD;
}

input[type=submit] {
    width: 90%;
    height: 100px;
    /*background-color: #4CAF50;*/
    background-color: #00ff00;
    color: black;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
