body {
    position: absolute;
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
}

#header {
    position: absolute;
    top: 0;
    width: 100%;
    height: 10%;
    text-align: center;
    background-image: url("/static/frontend/img/logo.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#activeScreenContainer {
    position: relative;
    width: 100%;
    height: 80%;
    top: 10%;
}
    #goToHomeMenuButton {
        position: fixed;
        width: 80px;
        height: 80px;
        top: 24px;
        left: 10%;
        z-index: 1000;
    }
    #instructionsDisplay {
        position: absolute;
        bottom: 0;
        left: 0;
        margin: 0;
        width: 100%;
    }
    
    #timeSlotList {
        position: relative;
    }
        #timeSlotList label{
            position: relative;
            height: 64px;
            color: #FFFFFF;
        }
            #timeSlotList label span{
                display: inline-block;
                position: relative;
                line-height: 46px;
            }
                .time {
                    left: 0;
                }
        #registeredCheckInButtonLabel, #overflowCheckInButtonLabel {
            color: #FFFFFF;
            height: 64px;
            font-weight: bold;
            text-shadow: 0 2px 4px #000000;
            font-size: 16pt;
            line-height: 48px;
        }

#totalActivelyInRoom, #currentTime {
    position: fixed;
    bottom: 1%;
    left: 50%;
    transform: translate(-25%);
    margin: 0;
    font-size: 4em;
    line-height: 0.5em;
    background-color: #00000077;
    user-select: none;
    padding: 12px 6px 18px !important;
}
    #inEventLabel {
        font-size: 8pt;
        line-height: 8pt;
        text-align: center;
        margin: 0 0 6px;
    }
    #numberCount {
        font-size: 0.8em;
        text-align: center;
        margin: auto;
    }

    #currentTime {
        font-size: 3.4em;
        left: 20%;
    }