html {
    font-family: 'Balsamiq Sans', cursive;
    font-size: 150%;
    user-select: none;
}

html, body, div {
    margin: 0px;
    padding: 0px;
}

.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

h1 {
    margin: 0px;
}

header {
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    padding: 0.1em;
    padding-left: 0.5em;
}

body {
    width: 100vw;
    height: 100vh;
    background-color: green;
    display: flex;
    flex-direction: column;
}

#content {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: green;
}

#panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: white;
    padding: 1em;
    filter: drop-shadow(15px 15px 3px rgba(0, 0, 0, 0.3));
}

#panel.complete {
    background-color: orange;
}

#panel.timely {
    
}

#metrics {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.5em;
    background-color: rgb(253, 244, 119);
    padding: 0.2em;
    border: 3px solid rgb(211, 197, 0);
}

#expression {
    font-size: 2em;
    margin: 0.1em;
}

input[type="text"] {
    font-size: inherit;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    text-align: center;
}

button {
    font-size: 1.5em;
}

#scoreLab, #timeLab {
    margin-left: 0.3em;
}