body {
    /* background-color: #2c2c2c; */
    color: white;
    font-family: sans-serif;
    width: 100%;
    height: 100%;
    margin: 0;
}

#header {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 15%;
    transform: translateY(-50%);
    text-align: center;
}

#start, #wait, #click, #done {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    text-justify: center;
}

.panel h1{
    margin-top: 45px;
}

#start {
    display: block;
}

#wait {
    display: none;
    background-color: #CC2E2E;
}

#click {
    display: none;
    background-color: #2ECC71;
}

#done {
    display: none;
}

#score {
    margin-left: 2%;
}

#highscore {
    margin-right: 2%;
}

#scorecontainer{
    position: fixed;
    display: flex;
    justify-content: space-between;
    top: 0px;
    padding-top: 45px;
    padding-bottom: 10px;
    width: 100vw;
    /* background: rgba(28, 40, 51, 0.5); */
    /* backdrop-filter: blur(20px); */
    pointer-events: none;
}